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

BluetoothFindRadioClose

関数
Bluetoothラジオの列挙ハンドルを閉じる。
DLLBluetoothApis.dll呼出規約winapiSetLastErrorあり対応OSWindows Vista 以降

シグネチャ

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

BOOL BluetoothFindRadioClose(
    HBLUETOOTH_RADIO_FIND hFind
);

パラメーター

名前方向
hFindHBLUETOOTH_RADIO_FINDin

戻り値の型: BOOL

各言語での呼び出し定義

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

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

BluetoothFindRadioClose = ctypes.windll.bluetoothapis.BluetoothFindRadioClose
BluetoothFindRadioClose.restype = wintypes.BOOL
BluetoothFindRadioClose.argtypes = [
    wintypes.HANDLE,  # hFind : HBLUETOOTH_RADIO_FIND
]
# GetLastError: use ctypes.GetLastError() (or ctypes.WinDLL(use_last_error=True))
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('BluetoothApis.dll')
BluetoothFindRadioClose = Fiddle::Function.new(
  lib['BluetoothFindRadioClose'],
  [
    Fiddle::TYPE_VOIDP,  # hFind : HBLUETOOTH_RADIO_FIND
  ],
  Fiddle::TYPE_INT)
#[link(name = "bluetoothapis")]
extern "system" {
    fn BluetoothFindRadioClose(
        hFind: *mut core::ffi::c_void  // HBLUETOOTH_RADIO_FIND
    ) -> 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 BluetoothFindRadioClose(IntPtr hFind);
"@
$api = Add-Type -MemberDefinition $sig -Name 'BluetoothApis_BluetoothFindRadioClose' -Namespace Win32 -PassThru
# $api::BluetoothFindRadioClose(hFind)
#uselib "BluetoothApis.dll"
#func global BluetoothFindRadioClose "BluetoothFindRadioClose" sptr
; BluetoothFindRadioClose hFind   ; 戻り値は stat
; hFind : HBLUETOOTH_RADIO_FIND -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
#uselib "BluetoothApis.dll"
#cfunc global BluetoothFindRadioClose "BluetoothFindRadioClose" sptr
; res = BluetoothFindRadioClose(hFind)
; hFind : HBLUETOOTH_RADIO_FIND -> "sptr"
; BOOL BluetoothFindRadioClose(HBLUETOOTH_RADIO_FIND hFind)
#uselib "BluetoothApis.dll"
#cfunc global BluetoothFindRadioClose "BluetoothFindRadioClose" intptr
; res = BluetoothFindRadioClose(hFind)
; hFind : HBLUETOOTH_RADIO_FIND -> "intptr"
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	bluetoothapis = windows.NewLazySystemDLL("BluetoothApis.dll")
	procBluetoothFindRadioClose = bluetoothapis.NewProc("BluetoothFindRadioClose")
)

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