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

BluetoothUnregisterAuthentication

関数
登録したBluetooth認証コールバックを解除する。
DLLBluetoothApis.dll呼出規約winapiSetLastErrorあり対応OSWindows Vista 以降

シグネチャ

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

BOOL BluetoothUnregisterAuthentication(
    INT_PTR hRegHandle
);

パラメーター

名前方向説明
hRegHandleINT_PTRin解除する認証コールバック登録ハンドル。Registerで取得した値。

戻り値の型: BOOL

各言語での呼び出し定義

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

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

BluetoothUnregisterAuthentication = ctypes.windll.bluetoothapis.BluetoothUnregisterAuthentication
BluetoothUnregisterAuthentication.restype = wintypes.BOOL
BluetoothUnregisterAuthentication.argtypes = [
    ctypes.c_ssize_t,  # hRegHandle : INT_PTR
]
# GetLastError: use ctypes.GetLastError() (or ctypes.WinDLL(use_last_error=True))
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('BluetoothApis.dll')
BluetoothUnregisterAuthentication = Fiddle::Function.new(
  lib['BluetoothUnregisterAuthentication'],
  [
    Fiddle::TYPE_INTPTR_T,  # hRegHandle : INT_PTR
  ],
  Fiddle::TYPE_INT)
#[link(name = "bluetoothapis")]
extern "system" {
    fn BluetoothUnregisterAuthentication(
        hRegHandle: isize  // INT_PTR
    ) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("BluetoothApis.dll", SetLastError = true)]
public static extern bool BluetoothUnregisterAuthentication(IntPtr hRegHandle);
"@
$api = Add-Type -MemberDefinition $sig -Name 'BluetoothApis_BluetoothUnregisterAuthentication' -Namespace Win32 -PassThru
# $api::BluetoothUnregisterAuthentication(hRegHandle)
#uselib "BluetoothApis.dll"
#func global BluetoothUnregisterAuthentication "BluetoothUnregisterAuthentication" sptr
; BluetoothUnregisterAuthentication hRegHandle   ; 戻り値は stat
; hRegHandle : INT_PTR -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
#uselib "BluetoothApis.dll"
#cfunc global BluetoothUnregisterAuthentication "BluetoothUnregisterAuthentication" sptr
; res = BluetoothUnregisterAuthentication(hRegHandle)
; hRegHandle : INT_PTR -> "sptr"
; BOOL BluetoothUnregisterAuthentication(INT_PTR hRegHandle)
#uselib "BluetoothApis.dll"
#cfunc global BluetoothUnregisterAuthentication "BluetoothUnregisterAuthentication" intptr
; res = BluetoothUnregisterAuthentication(hRegHandle)
; hRegHandle : INT_PTR -> "intptr"
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	bluetoothapis = windows.NewLazySystemDLL("BluetoothApis.dll")
	procBluetoothUnregisterAuthentication = bluetoothapis.NewProc("BluetoothUnregisterAuthentication")
)

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

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

typedef BluetoothUnregisterAuthenticationNative = Int32 Function(IntPtr);
typedef BluetoothUnregisterAuthenticationDart = int Function(int);
final BluetoothUnregisterAuthentication = DynamicLibrary.open('BluetoothApis.dll')
    .lookupFunction<BluetoothUnregisterAuthenticationNative, BluetoothUnregisterAuthenticationDart>('BluetoothUnregisterAuthentication');
// hRegHandle : INT_PTR -> IntPtr
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function BluetoothUnregisterAuthentication(
  hRegHandle: NativeInt   // INT_PTR
): BOOL; stdcall;
  external 'BluetoothApis.dll' name 'BluetoothUnregisterAuthentication';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "BluetoothUnregisterAuthentication"
  c_BluetoothUnregisterAuthentication :: CIntPtr -> IO CInt
-- hRegHandle : INT_PTR -> CIntPtr
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let bluetoothunregisterauthentication =
  foreign "BluetoothUnregisterAuthentication"
    (intptr_t @-> returning int32_t)
(* hRegHandle : INT_PTR -> intptr_t *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library bluetoothapis (t "BluetoothApis.dll"))
(cffi:use-foreign-library bluetoothapis)

(cffi:defcfun ("BluetoothUnregisterAuthentication" bluetooth-unregister-authentication :convention :stdcall) :int32
  (h-reg-handle :int64))   ; INT_PTR
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $BluetoothUnregisterAuthentication = Win32::API::More->new('BluetoothApis',
    'BOOL BluetoothUnregisterAuthentication(LPARAM hRegHandle)');
# my $ret = $BluetoothUnregisterAuthentication->Call($hRegHandle);
# hRegHandle : INT_PTR -> LPARAM
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。