ホーム › Devices.Bluetooth › BluetoothIsConnectable
BluetoothIsConnectable
関数ローカルラジオが着信接続を受付可能かを判定する。
シグネチャ
// BluetoothApis.dll
#include <windows.h>
BOOL BluetoothIsConnectable(
HANDLE hRadio // optional
);パラメーター
| 名前 | 型 | 方向 |
|---|---|---|
| hRadio | HANDLE | inoptional |
戻り値の型: BOOL
各言語での呼び出し定義
// BluetoothApis.dll
#include <windows.h>
BOOL BluetoothIsConnectable(
HANDLE hRadio // optional
);[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("BluetoothApis.dll", ExactSpelling = true)]
static extern bool BluetoothIsConnectable(
IntPtr hRadio // HANDLE optional
);<DllImport("BluetoothApis.dll", ExactSpelling:=True)>
Public Shared Function BluetoothIsConnectable(
hRadio As IntPtr ' HANDLE optional
) As Boolean
End Function' hRadio : HANDLE optional
Declare PtrSafe Function BluetoothIsConnectable Lib "bluetoothapis" ( _
ByVal hRadio As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
BluetoothIsConnectable = ctypes.windll.bluetoothapis.BluetoothIsConnectable
BluetoothIsConnectable.restype = wintypes.BOOL
BluetoothIsConnectable.argtypes = [
wintypes.HANDLE, # hRadio : HANDLE optional
]require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('BluetoothApis.dll')
BluetoothIsConnectable = Fiddle::Function.new(
lib['BluetoothIsConnectable'],
[
Fiddle::TYPE_VOIDP, # hRadio : HANDLE optional
],
Fiddle::TYPE_INT)#[link(name = "bluetoothapis")]
extern "system" {
fn BluetoothIsConnectable(
hRadio: *mut core::ffi::c_void // HANDLE optional
) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("BluetoothApis.dll")]
public static extern bool BluetoothIsConnectable(IntPtr hRadio);
"@
$api = Add-Type -MemberDefinition $sig -Name 'BluetoothApis_BluetoothIsConnectable' -Namespace Win32 -PassThru
# $api::BluetoothIsConnectable(hRadio)#uselib "BluetoothApis.dll"
#func global BluetoothIsConnectable "BluetoothIsConnectable" sptr
; BluetoothIsConnectable hRadio ; 戻り値は stat
; hRadio : HANDLE optional -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。#uselib "BluetoothApis.dll"
#cfunc global BluetoothIsConnectable "BluetoothIsConnectable" sptr
; res = BluetoothIsConnectable(hRadio)
; hRadio : HANDLE optional -> "sptr"; BOOL BluetoothIsConnectable(HANDLE hRadio)
#uselib "BluetoothApis.dll"
#cfunc global BluetoothIsConnectable "BluetoothIsConnectable" intptr
; res = BluetoothIsConnectable(hRadio)
; hRadio : HANDLE optional -> "intptr"import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
bluetoothapis = windows.NewLazySystemDLL("BluetoothApis.dll")
procBluetoothIsConnectable = bluetoothapis.NewProc("BluetoothIsConnectable")
)
// hRadio (HANDLE optional)
r1, _, err := procBluetoothIsConnectable.Call(
uintptr(hRadio),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // BOOLfunction BluetoothIsConnectable(
hRadio: THandle // HANDLE optional
): BOOL; stdcall;
external 'BluetoothApis.dll' name 'BluetoothIsConnectable';result := DllCall("BluetoothApis\BluetoothIsConnectable"
, "Ptr", hRadio ; HANDLE optional
, "Int") ; return: BOOL●BluetoothIsConnectable(hRadio) = DLL("BluetoothApis.dll", "bool BluetoothIsConnectable(void*)")
# 呼び出し: BluetoothIsConnectable(hRadio)
# hRadio : HANDLE optional -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。