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

GdipCreateHatchBrush

関数
ハッチパターンのブラシを作成する。
DLLgdiplus.dll呼出規約winapi

シグネチャ

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

Status GdipCreateHatchBrush(
    HatchStyle hatchstyle,
    DWORD forecol,
    DWORD backcol,
    GpHatch** brush
);

パラメーター

名前方向説明
hatchstyleHatchStyleinハッチング模様の種類を指定する列挙値。
forecolDWORDin前景色をARGB形式で指定する32ビット値。
backcolDWORDin背景色をARGB形式で指定する32ビット値。
brushGpHatch**inout生成されたハッチブラシを受け取るポインタのアドレス。

戻り値の型: Status

各言語での呼び出し定義

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

Status GdipCreateHatchBrush(
    HatchStyle hatchstyle,
    DWORD forecol,
    DWORD backcol,
    GpHatch** brush
);
[DllImport("gdiplus.dll", ExactSpelling = true)]
static extern int GdipCreateHatchBrush(
    int hatchstyle,   // HatchStyle
    uint forecol,   // DWORD
    uint backcol,   // DWORD
    IntPtr brush   // GpHatch** in/out
);
<DllImport("gdiplus.dll", ExactSpelling:=True)>
Public Shared Function GdipCreateHatchBrush(
    hatchstyle As Integer,   ' HatchStyle
    forecol As UInteger,   ' DWORD
    backcol As UInteger,   ' DWORD
    brush As IntPtr   ' GpHatch** in/out
) As Integer
End Function
' hatchstyle : HatchStyle
' forecol : DWORD
' backcol : DWORD
' brush : GpHatch** in/out
Declare PtrSafe Function GdipCreateHatchBrush Lib "gdiplus" ( _
    ByVal hatchstyle As Long, _
    ByVal forecol As Long, _
    ByVal backcol As Long, _
    ByVal brush As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

GdipCreateHatchBrush = ctypes.windll.gdiplus.GdipCreateHatchBrush
GdipCreateHatchBrush.restype = ctypes.c_int
GdipCreateHatchBrush.argtypes = [
    ctypes.c_int,  # hatchstyle : HatchStyle
    wintypes.DWORD,  # forecol : DWORD
    wintypes.DWORD,  # backcol : DWORD
    ctypes.c_void_p,  # brush : GpHatch** in/out
]
require 'fiddle'
require 'fiddle/import'

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

var (
	gdiplus = windows.NewLazySystemDLL("gdiplus.dll")
	procGdipCreateHatchBrush = gdiplus.NewProc("GdipCreateHatchBrush")
)

// hatchstyle (HatchStyle), forecol (DWORD), backcol (DWORD), brush (GpHatch** in/out)
r1, _, err := procGdipCreateHatchBrush.Call(
	uintptr(hatchstyle),
	uintptr(forecol),
	uintptr(backcol),
	uintptr(brush),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // Status
function GdipCreateHatchBrush(
  hatchstyle: Integer;   // HatchStyle
  forecol: DWORD;   // DWORD
  backcol: DWORD;   // DWORD
  brush: Pointer   // GpHatch** in/out
): Integer; stdcall;
  external 'gdiplus.dll' name 'GdipCreateHatchBrush';
result := DllCall("gdiplus\GdipCreateHatchBrush"
    , "Int", hatchstyle   ; HatchStyle
    , "UInt", forecol   ; DWORD
    , "UInt", backcol   ; DWORD
    , "Ptr", brush   ; GpHatch** in/out
    , "Int")   ; return: Status
●GdipCreateHatchBrush(hatchstyle, forecol, backcol, brush) = DLL("gdiplus.dll", "int GdipCreateHatchBrush(int, dword, dword, void*)")
# 呼び出し: GdipCreateHatchBrush(hatchstyle, forecol, backcol, brush)
# hatchstyle : HatchStyle -> "int"
# forecol : DWORD -> "dword"
# backcol : DWORD -> "dword"
# brush : GpHatch** in/out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
const std = @import("std");

extern "gdiplus" fn GdipCreateHatchBrush(
    hatchstyle: i32, // HatchStyle
    forecol: u32, // DWORD
    backcol: u32, // DWORD
    brush: [*c][*c]GpHatch // GpHatch** in/out
) callconv(std.os.windows.WINAPI) i32;
proc GdipCreateHatchBrush(
    hatchstyle: int32,  # HatchStyle
    forecol: uint32,  # DWORD
    backcol: uint32,  # DWORD
    brush: ptr GpHatch  # GpHatch** in/out
): int32 {.importc: "GdipCreateHatchBrush", stdcall, dynlib: "gdiplus.dll".}
pragma(lib, "gdiplus");
extern(Windows)
int GdipCreateHatchBrush(
    int hatchstyle,   // HatchStyle
    uint forecol,   // DWORD
    uint backcol,   // DWORD
    GpHatch** brush   // GpHatch** in/out
);
ccall((:GdipCreateHatchBrush, "gdiplus.dll"), stdcall, Int32,
      (Int32, UInt32, UInt32, Ptr{GpHatch}),
      hatchstyle, forecol, backcol, brush)
# hatchstyle : HatchStyle -> Int32
# forecol : DWORD -> UInt32
# backcol : DWORD -> UInt32
# brush : GpHatch** in/out -> Ptr{GpHatch}
# stdcall は 32bit のみ意味を持つ(x64 では無視)。
local ffi = require("ffi")
ffi.cdef[[
int32_t GdipCreateHatchBrush(
    int32_t hatchstyle,
    uint32_t forecol,
    uint32_t backcol,
    void* brush);
]]
local gdiplus = ffi.load("gdiplus")
-- gdiplus.GdipCreateHatchBrush(hatchstyle, forecol, backcol, brush)
-- hatchstyle : HatchStyle
-- forecol : DWORD
-- backcol : DWORD
-- brush : GpHatch** in/out
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
const koffi = require('koffi');
const lib = koffi.load('gdiplus.dll');
const GdipCreateHatchBrush = lib.func('__stdcall', 'GdipCreateHatchBrush', 'int32_t', ['int32_t', 'uint32_t', 'uint32_t', 'void *']);
// GdipCreateHatchBrush(hatchstyle, forecol, backcol, brush)
// hatchstyle : HatchStyle -> 'int32_t'
// forecol : DWORD -> 'uint32_t'
// backcol : DWORD -> 'uint32_t'
// brush : GpHatch** in/out -> 'void *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。
const lib = Deno.dlopen("gdiplus.dll", {
  GdipCreateHatchBrush: { parameters: ["i32", "u32", "u32", "pointer"], result: "i32" },
});
// lib.symbols.GdipCreateHatchBrush(hatchstyle, forecol, backcol, brush)
// hatchstyle : HatchStyle -> "i32"
// forecol : DWORD -> "u32"
// backcol : DWORD -> "u32"
// brush : GpHatch** in/out -> "pointer"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。
<?php
$ffi = FFI::cdef(<<<C
int32_t GdipCreateHatchBrush(
    int32_t hatchstyle,
    uint32_t forecol,
    uint32_t backcol,
    void* brush);
C, "gdiplus.dll");
// $ffi->GdipCreateHatchBrush(hatchstyle, forecol, backcol, brush);
// hatchstyle : HatchStyle
// forecol : DWORD
// backcol : DWORD
// brush : GpHatch** in/out
// 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
// WINAPI(stdcall): x64 では呼出規約が統一されるため問題なし。x86 では __stdcall 対応のラッパが必要な場合あり。
import com.sun.jna.*;
import com.sun.jna.ptr.*;
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;

public interface Gdiplus extends StdCallLibrary {
    Gdiplus INSTANCE = Native.load("gdiplus", Gdiplus.class);
    int GdipCreateHatchBrush(
        int hatchstyle,   // HatchStyle
        int forecol,   // DWORD
        int backcol,   // DWORD
        Pointer brush   // GpHatch** in/out
    );
}
@[Link("gdiplus")]
lib Libgdiplus
  fun GdipCreateHatchBrush = GdipCreateHatchBrush(
    hatchstyle : Int32,   # HatchStyle
    forecol : UInt32,   # DWORD
    backcol : UInt32,   # DWORD
    brush : GpHatch**   # GpHatch** in/out
  ) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。
import 'dart:ffi';
import 'package:ffi/ffi.dart';

typedef GdipCreateHatchBrushNative = Int32 Function(Int32, Uint32, Uint32, Pointer<Void>);
typedef GdipCreateHatchBrushDart = int Function(int, int, int, Pointer<Void>);
final GdipCreateHatchBrush = DynamicLibrary.open('gdiplus.dll')
    .lookupFunction<GdipCreateHatchBrushNative, GdipCreateHatchBrushDart>('GdipCreateHatchBrush');
// hatchstyle : HatchStyle -> Int32
// forecol : DWORD -> Uint32
// backcol : DWORD -> Uint32
// brush : GpHatch** in/out -> Pointer<Void>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function GdipCreateHatchBrush(
  hatchstyle: Integer;   // HatchStyle
  forecol: DWORD;   // DWORD
  backcol: DWORD;   // DWORD
  brush: Pointer   // GpHatch** in/out
): Integer; stdcall;
  external 'gdiplus.dll' name 'GdipCreateHatchBrush';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "GdipCreateHatchBrush"
  c_GdipCreateHatchBrush :: Int32 -> Word32 -> Word32 -> Ptr () -> IO Int32
-- hatchstyle : HatchStyle -> Int32
-- forecol : DWORD -> Word32
-- backcol : DWORD -> Word32
-- brush : GpHatch** in/out -> Ptr ()
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let gdipcreatehatchbrush =
  foreign "GdipCreateHatchBrush"
    (int32_t @-> uint32_t @-> uint32_t @-> (ptr void) @-> returning int32_t)
(* hatchstyle : HatchStyle -> int32_t *)
(* forecol : DWORD -> uint32_t *)
(* backcol : DWORD -> uint32_t *)
(* brush : GpHatch** in/out -> (ptr void) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library gdiplus (t "gdiplus.dll"))
(cffi:use-foreign-library gdiplus)

(cffi:defcfun ("GdipCreateHatchBrush" gdip-create-hatch-brush :convention :stdcall) :int32
  (hatchstyle :int32)   ; HatchStyle
  (forecol :uint32)   ; DWORD
  (backcol :uint32)   ; DWORD
  (brush :pointer))   ; GpHatch** in/out
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $GdipCreateHatchBrush = Win32::API::More->new('gdiplus',
    'int GdipCreateHatchBrush(int hatchstyle, DWORD forecol, DWORD backcol, LPVOID brush)');
# my $ret = $GdipCreateHatchBrush->Call($hatchstyle, $forecol, $backcol, $brush);
# hatchstyle : HatchStyle -> int
# forecol : DWORD -> DWORD
# backcol : DWORD -> DWORD
# brush : GpHatch** in/out -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。

関連項目

使用する型