Win32 API 日本語リファレンス
ホームGraphics.GdiPlus › GdipAddPathRectanglesI

GdipAddPathRectanglesI

関数
GDI+のパスに複数の矩形を追加する(整数版)。
DLLgdiplus.dll呼出規約winapi

シグネチャ

// gdiplus.dll
#include <windows.h>

Status GdipAddPathRectanglesI(
    GpPath* path,
    const Rect* rects,
    INT count
);

パラメーター

名前方向
pathGpPath*inout
rectsRect*in
countINTin

戻り値の型: Status

各言語での呼び出し定義

// gdiplus.dll
#include <windows.h>

Status GdipAddPathRectanglesI(
    GpPath* path,
    const Rect* rects,
    INT count
);
[DllImport("gdiplus.dll", ExactSpelling = true)]
static extern int GdipAddPathRectanglesI(
    IntPtr path,   // GpPath* in/out
    IntPtr rects,   // Rect*
    int count   // INT
);
<DllImport("gdiplus.dll", ExactSpelling:=True)>
Public Shared Function GdipAddPathRectanglesI(
    path As IntPtr,   ' GpPath* in/out
    rects As IntPtr,   ' Rect*
    count As Integer   ' INT
) As Integer
End Function
' path : GpPath* in/out
' rects : Rect*
' count : INT
Declare PtrSafe Function GdipAddPathRectanglesI Lib "gdiplus" ( _
    ByVal path As LongPtr, _
    ByVal rects As LongPtr, _
    ByVal count As Long) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

GdipAddPathRectanglesI = ctypes.windll.gdiplus.GdipAddPathRectanglesI
GdipAddPathRectanglesI.restype = ctypes.c_int
GdipAddPathRectanglesI.argtypes = [
    ctypes.c_void_p,  # path : GpPath* in/out
    ctypes.c_void_p,  # rects : Rect*
    ctypes.c_int,  # count : INT
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('gdiplus.dll')
GdipAddPathRectanglesI = Fiddle::Function.new(
  lib['GdipAddPathRectanglesI'],
  [
    Fiddle::TYPE_VOIDP,  # path : GpPath* in/out
    Fiddle::TYPE_VOIDP,  # rects : Rect*
    Fiddle::TYPE_INT,  # count : INT
  ],
  Fiddle::TYPE_INT)
#[link(name = "gdiplus")]
extern "system" {
    fn GdipAddPathRectanglesI(
        path: *mut GpPath,  // GpPath* in/out
        rects: *const Rect,  // Rect*
        count: i32  // INT
    ) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("gdiplus.dll")]
public static extern int GdipAddPathRectanglesI(IntPtr path, IntPtr rects, int count);
"@
$api = Add-Type -MemberDefinition $sig -Name 'gdiplus_GdipAddPathRectanglesI' -Namespace Win32 -PassThru
# $api::GdipAddPathRectanglesI(path, rects, count)
#uselib "gdiplus.dll"
#func global GdipAddPathRectanglesI "GdipAddPathRectanglesI" sptr, sptr, sptr
; GdipAddPathRectanglesI varptr(path), varptr(rects), count   ; 戻り値は stat
; path : GpPath* in/out -> "sptr"
; rects : Rect* -> "sptr"
; count : INT -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
出力引数:
#uselib "gdiplus.dll"
#cfunc global GdipAddPathRectanglesI "GdipAddPathRectanglesI" var, var, int
; res = GdipAddPathRectanglesI(path, rects, count)
; path : GpPath* in/out -> "var"
; rects : Rect* -> "var"
; count : INT -> "int"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
出力引数:
; Status GdipAddPathRectanglesI(GpPath* path, Rect* rects, INT count)
#uselib "gdiplus.dll"
#cfunc global GdipAddPathRectanglesI "GdipAddPathRectanglesI" var, var, int
; res = GdipAddPathRectanglesI(path, rects, count)
; path : GpPath* in/out -> "var"
; rects : Rect* -> "var"
; count : INT -> "int"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	gdiplus = windows.NewLazySystemDLL("gdiplus.dll")
	procGdipAddPathRectanglesI = gdiplus.NewProc("GdipAddPathRectanglesI")
)

// path (GpPath* in/out), rects (Rect*), count (INT)
r1, _, err := procGdipAddPathRectanglesI.Call(
	uintptr(path),
	uintptr(rects),
	uintptr(count),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // Status
function GdipAddPathRectanglesI(
  path: Pointer;   // GpPath* in/out
  rects: Pointer;   // Rect*
  count: Integer   // INT
): Integer; stdcall;
  external 'gdiplus.dll' name 'GdipAddPathRectanglesI';
result := DllCall("gdiplus\GdipAddPathRectanglesI"
    , "Ptr", path   ; GpPath* in/out
    , "Ptr", rects   ; Rect*
    , "Int", count   ; INT
    , "Int")   ; return: Status
●GdipAddPathRectanglesI(path, rects, count) = DLL("gdiplus.dll", "int GdipAddPathRectanglesI(void*, void*, int)")
# 呼び出し: GdipAddPathRectanglesI(path, rects, count)
# path : GpPath* in/out -> "void*"
# rects : Rect* -> "void*"
# count : INT -> "int"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。