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

FindClosePrinterChangeNotification

関数
プリンター変更通知の監視を終了しハンドルを閉じる。
DLLwinspool.drv呼出規約winapi

シグネチャ

// winspool.drv
#include <windows.h>

BOOL FindClosePrinterChangeNotification(
    FINDPRINTERCHANGENOTIFICATION_HANDLE hChange
);

パラメーター

名前方向説明
hChangeFINDPRINTERCHANGENOTIFICATION_HANDLEin閉じる変更通知ハンドル。FindFirstPrinterChangeNotificationの戻り値を指定する。

戻り値の型: BOOL

各言語での呼び出し定義

// winspool.drv
#include <windows.h>

BOOL FindClosePrinterChangeNotification(
    FINDPRINTERCHANGENOTIFICATION_HANDLE hChange
);
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("winspool.drv", ExactSpelling = true)]
static extern bool FindClosePrinterChangeNotification(
    FINDPRINTERCHANGENOTIFICATION_HANDLE hChange   // FINDPRINTERCHANGENOTIFICATION_HANDLE
);
<DllImport("winspool.drv", ExactSpelling:=True)>
Public Shared Function FindClosePrinterChangeNotification(
    hChange As FINDPRINTERCHANGENOTIFICATION_HANDLE   ' FINDPRINTERCHANGENOTIFICATION_HANDLE
) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function
' hChange : FINDPRINTERCHANGENOTIFICATION_HANDLE
Declare PtrSafe Function FindClosePrinterChangeNotification Lib "winspool.drv" ( _
    ByVal hChange As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

FindClosePrinterChangeNotification = ctypes.windll.LoadLibrary("winspool.drv").FindClosePrinterChangeNotification
FindClosePrinterChangeNotification.restype = wintypes.BOOL
FindClosePrinterChangeNotification.argtypes = [
    FINDPRINTERCHANGENOTIFICATION_HANDLE,  # hChange : FINDPRINTERCHANGENOTIFICATION_HANDLE
]
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('winspool.drv')
FindClosePrinterChangeNotification = Fiddle::Function.new(
  lib['FindClosePrinterChangeNotification'],
  [
    Fiddle::TYPE_VOIDP,  # hChange : FINDPRINTERCHANGENOTIFICATION_HANDLE
  ],
  Fiddle::TYPE_INT)
#[link(name = "winspool.drv")]
extern "system" {
    fn FindClosePrinterChangeNotification(
        hChange: FINDPRINTERCHANGENOTIFICATION_HANDLE  // FINDPRINTERCHANGENOTIFICATION_HANDLE
    ) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("winspool.drv")]
public static extern bool FindClosePrinterChangeNotification(FINDPRINTERCHANGENOTIFICATION_HANDLE hChange);
"@
$api = Add-Type -MemberDefinition $sig -Name 'winspool.drv_FindClosePrinterChangeNotification' -Namespace Win32 -PassThru
# $api::FindClosePrinterChangeNotification(hChange)
#uselib "winspool.drv"
#func global FindClosePrinterChangeNotification "FindClosePrinterChangeNotification" sptr
; FindClosePrinterChangeNotification hChange   ; 戻り値は stat
; hChange : FINDPRINTERCHANGENOTIFICATION_HANDLE -> "sptr"
; ※値渡し構造体は直接渡せません。intにパック、または var で構造体変数を渡してください。
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
#uselib "winspool.drv"
#cfunc global FindClosePrinterChangeNotification "FindClosePrinterChangeNotification" int
; res = FindClosePrinterChangeNotification(hChange)
; hChange : FINDPRINTERCHANGENOTIFICATION_HANDLE -> "int"
; ※値渡し構造体は直接渡せません。intにパック、または var で構造体変数を渡してください。
; BOOL FindClosePrinterChangeNotification(FINDPRINTERCHANGENOTIFICATION_HANDLE hChange)
#uselib "winspool.drv"
#cfunc global FindClosePrinterChangeNotification "FindClosePrinterChangeNotification" int
; res = FindClosePrinterChangeNotification(hChange)
; hChange : FINDPRINTERCHANGENOTIFICATION_HANDLE -> "int"
; ※値渡し構造体は直接渡せません。intにパック、または var で構造体変数を渡してください。
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	winspool_drv = windows.NewLazySystemDLL("winspool.drv")
	procFindClosePrinterChangeNotification = winspool_drv.NewProc("FindClosePrinterChangeNotification")
)

// hChange (FINDPRINTERCHANGENOTIFICATION_HANDLE)
r1, _, err := procFindClosePrinterChangeNotification.Call(
	uintptr(hChange),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // BOOL
function FindClosePrinterChangeNotification(
  hChange: FINDPRINTERCHANGENOTIFICATION_HANDLE   // FINDPRINTERCHANGENOTIFICATION_HANDLE
): BOOL; stdcall;
  external 'winspool.drv' name 'FindClosePrinterChangeNotification';
result := DllCall("winspool.drv\FindClosePrinterChangeNotification"
    , "Ptr", hChange   ; FINDPRINTERCHANGENOTIFICATION_HANDLE
    , "Int")   ; return: BOOL
●FindClosePrinterChangeNotification(hChange) = DLL("winspool.drv", "bool FindClosePrinterChangeNotification(void*)")
# 呼び出し: FindClosePrinterChangeNotification(hChange)
# hChange : FINDPRINTERCHANGENOTIFICATION_HANDLE -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
const std = @import("std");

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

typedef FindClosePrinterChangeNotificationNative = Int32 Function(FINDPRINTERCHANGENOTIFICATION_HANDLE);
typedef FindClosePrinterChangeNotificationDart = int Function(int);
final FindClosePrinterChangeNotification = DynamicLibrary.open('winspool.drv')
    .lookupFunction<FindClosePrinterChangeNotificationNative, FindClosePrinterChangeNotificationDart>('FindClosePrinterChangeNotification');
// hChange : FINDPRINTERCHANGENOTIFICATION_HANDLE -> FINDPRINTERCHANGENOTIFICATION_HANDLE
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function FindClosePrinterChangeNotification(
  hChange: FINDPRINTERCHANGENOTIFICATION_HANDLE   // FINDPRINTERCHANGENOTIFICATION_HANDLE
): BOOL; stdcall;
  external 'winspool.drv' name 'FindClosePrinterChangeNotification';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "FindClosePrinterChangeNotification"
  c_FindClosePrinterChangeNotification :: FINDPRINTERCHANGENOTIFICATION_HANDLE -> IO CInt
-- hChange : FINDPRINTERCHANGENOTIFICATION_HANDLE -> FINDPRINTERCHANGENOTIFICATION_HANDLE
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
-- ※値渡し構造体は GHC FFI で直接渡せません。Ptr で渡すラッパ(C側)経由にしてください。
open Ctypes
open Foreign

let findcloseprinterchangenotification =
  foreign "FindClosePrinterChangeNotification"
    (FINDPRINTERCHANGENOTIFICATION_HANDLE @-> returning int32_t)
(* hChange : FINDPRINTERCHANGENOTIFICATION_HANDLE -> FINDPRINTERCHANGENOTIFICATION_HANDLE *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library winspool.drv (t "winspool.drv"))
(cffi:use-foreign-library winspool.drv)

(cffi:defcfun ("FindClosePrinterChangeNotification" find-close-printer-change-notification :convention :stdcall) :int32
  (h-change (:struct findprinterchangenotification-handle)))   ; FINDPRINTERCHANGENOTIFICATION_HANDLE
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $FindClosePrinterChangeNotification = Win32::API::More->new('winspool.drv',
    'BOOL FindClosePrinterChangeNotification(LPVOID hChange)');
# my $ret = $FindClosePrinterChangeNotification->Call($hChange);
# hChange : FINDPRINTERCHANGENOTIFICATION_HANDLE -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。

関連項目

使用する型