Win32 API 日本語リファレンス
ホームDevices.Display › BRUSHOBJ_hGetColorTransform

BRUSHOBJ_hGetColorTransform

関数
ブラシオブジェクトの色変換ハンドルを取得する。
DLLGDI32.dll呼出規約winapi対応OSWindows 2000 以降

シグネチャ

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

HANDLE BRUSHOBJ_hGetColorTransform(
    BRUSHOBJ* pbo
);

パラメーター

名前方向説明
pboBRUSHOBJ*inoutカラー変換を照会する BRUSHOBJ 構造体へのポインターです。このカラー変換は、事前の DrvIcmCreateColorTransform の呼び出しで作成されたものです。

戻り値の型: HANDLE

公式ドキュメント

BRUSHOBJ_hGetColorTransform 関数は、指定したブラシのカラー変換を取得します。

戻り値

成功した場合、BRUSHOBJ_hGetColorTransform は指定した BRUSHOBJ 構造体に対するカラー変換のハンドルを返します。それ以外の場合は NULL を返します。

解説(Remarks)

ICM が無効な場合、BRUSHOBJ_hGetColorTransformNULL を返します。

変換オブジェクトのカラー変換は、XLATEOBJ_hGetColorTransform を呼び出すことで取得します。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での呼び出し定義

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

HANDLE BRUSHOBJ_hGetColorTransform(
    BRUSHOBJ* pbo
);
[DllImport("GDI32.dll", ExactSpelling = true)]
static extern IntPtr BRUSHOBJ_hGetColorTransform(
    IntPtr pbo   // BRUSHOBJ* in/out
);
<DllImport("GDI32.dll", ExactSpelling:=True)>
Public Shared Function BRUSHOBJ_hGetColorTransform(
    pbo As IntPtr   ' BRUSHOBJ* in/out
) As IntPtr
End Function
' pbo : BRUSHOBJ* in/out
Declare PtrSafe Function BRUSHOBJ_hGetColorTransform Lib "gdi32" ( _
    ByVal pbo As LongPtr) As LongPtr
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

BRUSHOBJ_hGetColorTransform = ctypes.windll.gdi32.BRUSHOBJ_hGetColorTransform
BRUSHOBJ_hGetColorTransform.restype = ctypes.c_void_p
BRUSHOBJ_hGetColorTransform.argtypes = [
    ctypes.c_void_p,  # pbo : BRUSHOBJ* in/out
]
require 'fiddle'
require 'fiddle/import'

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

var (
	gdi32 = windows.NewLazySystemDLL("GDI32.dll")
	procBRUSHOBJ_hGetColorTransform = gdi32.NewProc("BRUSHOBJ_hGetColorTransform")
)

// pbo (BRUSHOBJ* in/out)
r1, _, err := procBRUSHOBJ_hGetColorTransform.Call(
	uintptr(pbo),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // HANDLE
function BRUSHOBJ_hGetColorTransform(
  pbo: Pointer   // BRUSHOBJ* in/out
): THandle; stdcall;
  external 'GDI32.dll' name 'BRUSHOBJ_hGetColorTransform';
result := DllCall("GDI32\BRUSHOBJ_hGetColorTransform"
    , "Ptr", pbo   ; BRUSHOBJ* in/out
    , "Ptr")   ; return: HANDLE
●BRUSHOBJ_hGetColorTransform(pbo) = DLL("GDI32.dll", "void* BRUSHOBJ_hGetColorTransform(void*)")
# 呼び出し: BRUSHOBJ_hGetColorTransform(pbo)
# pbo : BRUSHOBJ* in/out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
const std = @import("std");

extern "gdi32" fn BRUSHOBJ_hGetColorTransform(
    pbo: [*c]BRUSHOBJ // BRUSHOBJ* in/out
) callconv(std.os.windows.WINAPI) ?*anyopaque;
proc BRUSHOBJ_hGetColorTransform(
    pbo: ptr BRUSHOBJ  # BRUSHOBJ* in/out
): pointer {.importc: "BRUSHOBJ_hGetColorTransform", stdcall, dynlib: "GDI32.dll".}
pragma(lib, "gdi32");
extern(Windows)
void* BRUSHOBJ_hGetColorTransform(
    BRUSHOBJ* pbo   // BRUSHOBJ* in/out
);
ccall((:BRUSHOBJ_hGetColorTransform, "GDI32.dll"), stdcall, Ptr{Cvoid},
      (Ptr{BRUSHOBJ},),
      pbo)
# pbo : BRUSHOBJ* in/out -> Ptr{BRUSHOBJ}
# stdcall は 32bit のみ意味を持つ(x64 では無視)。
local ffi = require("ffi")
ffi.cdef[[
void* BRUSHOBJ_hGetColorTransform(
    void* pbo);
]]
local gdi32 = ffi.load("gdi32")
-- gdi32.BRUSHOBJ_hGetColorTransform(pbo)
-- pbo : BRUSHOBJ* in/out
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
const koffi = require('koffi');
const lib = koffi.load('GDI32.dll');
const BRUSHOBJ_hGetColorTransform = lib.func('__stdcall', 'BRUSHOBJ_hGetColorTransform', 'void *', ['void *']);
// BRUSHOBJ_hGetColorTransform(pbo)
// pbo : BRUSHOBJ* in/out -> 'void *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。
const lib = Deno.dlopen("GDI32.dll", {
  BRUSHOBJ_hGetColorTransform: { parameters: ["pointer"], result: "pointer" },
});
// lib.symbols.BRUSHOBJ_hGetColorTransform(pbo)
// pbo : BRUSHOBJ* in/out -> "pointer"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。
<?php
$ffi = FFI::cdef(<<<C
void* BRUSHOBJ_hGetColorTransform(
    void* pbo);
C, "GDI32.dll");
// $ffi->BRUSHOBJ_hGetColorTransform(pbo);
// pbo : BRUSHOBJ* 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 Gdi32 extends StdCallLibrary {
    Gdi32 INSTANCE = Native.load("gdi32", Gdi32.class);
    Pointer BRUSHOBJ_hGetColorTransform(
        Pointer pbo   // BRUSHOBJ* in/out
    );
}
@[Link("gdi32")]
lib LibGDI32
  fun BRUSHOBJ_hGetColorTransform = BRUSHOBJ_hGetColorTransform(
    pbo : BRUSHOBJ*   # BRUSHOBJ* in/out
  ) : Void*
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。
import 'dart:ffi';
import 'package:ffi/ffi.dart';

typedef BRUSHOBJ_hGetColorTransformNative = Pointer<Void> Function(Pointer<Void>);
typedef BRUSHOBJ_hGetColorTransformDart = Pointer<Void> Function(Pointer<Void>);
final BRUSHOBJ_hGetColorTransform = DynamicLibrary.open('GDI32.dll')
    .lookupFunction<BRUSHOBJ_hGetColorTransformNative, BRUSHOBJ_hGetColorTransformDart>('BRUSHOBJ_hGetColorTransform');
// pbo : BRUSHOBJ* in/out -> Pointer<Void>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function BRUSHOBJ_hGetColorTransform(
  pbo: Pointer   // BRUSHOBJ* in/out
): THandle; stdcall;
  external 'GDI32.dll' name 'BRUSHOBJ_hGetColorTransform';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "BRUSHOBJ_hGetColorTransform"
  c_BRUSHOBJ_hGetColorTransform :: Ptr () -> IO (Ptr ())
-- pbo : BRUSHOBJ* in/out -> Ptr ()
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let brushobj_hgetcolortransform =
  foreign "BRUSHOBJ_hGetColorTransform"
    ((ptr void) @-> returning (ptr void))
(* pbo : BRUSHOBJ* in/out -> (ptr void) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library gdi32 (t "GDI32.dll"))
(cffi:use-foreign-library gdi32)

(cffi:defcfun ("BRUSHOBJ_hGetColorTransform" brushobj-h-get-color-transform :convention :stdcall) :pointer
  (pbo :pointer))   ; BRUSHOBJ* in/out
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $BRUSHOBJ_hGetColorTransform = Win32::API::More->new('GDI32',
    'HANDLE BRUSHOBJ_hGetColorTransform(LPVOID pbo)');
# my $ret = $BRUSHOBJ_hGetColorTransform->Call($pbo);
# pbo : BRUSHOBJ* in/out -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。

関連項目

公式の関連項目
使用する型