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

GdipAddPathRectangles

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

シグネチャ

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

Status GdipAddPathRectangles(
    GpPath* path,
    const RectF* rects,
    INT count
);

パラメーター

名前方向
pathGpPath*inout
rectsRectF*in
countINTin

戻り値の型: Status

各言語での呼び出し定義

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

Status GdipAddPathRectangles(
    GpPath* path,
    const RectF* rects,
    INT count
);
[DllImport("gdiplus.dll", ExactSpelling = true)]
static extern int GdipAddPathRectangles(
    IntPtr path,   // GpPath* in/out
    IntPtr rects,   // RectF*
    int count   // INT
);
<DllImport("gdiplus.dll", ExactSpelling:=True)>
Public Shared Function GdipAddPathRectangles(
    path As IntPtr,   ' GpPath* in/out
    rects As IntPtr,   ' RectF*
    count As Integer   ' INT
) As Integer
End Function
' path : GpPath* in/out
' rects : RectF*
' count : INT
Declare PtrSafe Function GdipAddPathRectangles 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

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

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

var (
	gdiplus = windows.NewLazySystemDLL("gdiplus.dll")
	procGdipAddPathRectangles = gdiplus.NewProc("GdipAddPathRectangles")
)

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