ホーム › Devices.Bluetooth › BluetoothIsConnectable
BluetoothIsConnectable
関数ローカルラジオが着信接続を受付可能かを判定する。
シグネチャ
// BluetoothApis.dll
#include <windows.h>
BOOL BluetoothIsConnectable(
HANDLE hRadio // optional
);パラメーター
| 名前 | 型 | 方向 | 説明 |
|---|---|---|---|
| hRadio | HANDLE | inoptional | 着信接続を受け付け可能か調べるBluetoothラジオのハンドル。NULLでいずれかが接続可能か判定。 |
戻り値の型: 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 <MarshalAs(UnmanagedType.Bool)> 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)。const std = @import("std");
extern "bluetoothapis" fn BluetoothIsConnectable(
hRadio: ?*anyopaque // HANDLE optional
) callconv(std.os.windows.WINAPI) i32;proc BluetoothIsConnectable(
hRadio: pointer # HANDLE optional
): int32 {.importc: "BluetoothIsConnectable", stdcall, dynlib: "BluetoothApis.dll".}pragma(lib, "bluetoothapis");
extern(Windows)
int BluetoothIsConnectable(
void* hRadio // HANDLE optional
);ccall((:BluetoothIsConnectable, "BluetoothApis.dll"), stdcall, Int32,
(Ptr{Cvoid},),
hRadio)
# hRadio : HANDLE optional -> Ptr{Cvoid}
# stdcall は 32bit のみ意味を持つ(x64 では無視)。local ffi = require("ffi")
ffi.cdef[[
int32_t BluetoothIsConnectable(
void* hRadio);
]]
local bluetoothapis = ffi.load("bluetoothapis")
-- bluetoothapis.BluetoothIsConnectable(hRadio)
-- hRadio : HANDLE optional
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。const koffi = require('koffi');
const lib = koffi.load('BluetoothApis.dll');
const BluetoothIsConnectable = lib.func('__stdcall', 'BluetoothIsConnectable', 'int32_t', ['void *']);
// BluetoothIsConnectable(hRadio)
// hRadio : HANDLE optional -> 'void *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。const lib = Deno.dlopen("BluetoothApis.dll", {
BluetoothIsConnectable: { parameters: ["pointer"], result: "i32" },
});
// lib.symbols.BluetoothIsConnectable(hRadio)
// hRadio : HANDLE optional -> "pointer"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。<?php
$ffi = FFI::cdef(<<<C
int32_t BluetoothIsConnectable(
void* hRadio);
C, "BluetoothApis.dll");
// $ffi->BluetoothIsConnectable(hRadio);
// hRadio : HANDLE optional
// 構造体/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 BluetoothIsConnectable(
Pointer hRadio // HANDLE optional
);
}@[Link("bluetoothapis")]
lib LibBluetoothApis
fun BluetoothIsConnectable = BluetoothIsConnectable(
hRadio : Void* # HANDLE optional
) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。import 'dart:ffi';
import 'package:ffi/ffi.dart';
typedef BluetoothIsConnectableNative = Int32 Function(Pointer<Void>);
typedef BluetoothIsConnectableDart = int Function(Pointer<Void>);
final BluetoothIsConnectable = DynamicLibrary.open('BluetoothApis.dll')
.lookupFunction<BluetoothIsConnectableNative, BluetoothIsConnectableDart>('BluetoothIsConnectable');
// hRadio : HANDLE optional -> Pointer<Void>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。{$mode objfpc}{$H+}
function BluetoothIsConnectable(
hRadio: THandle // HANDLE optional
): BOOL; stdcall;
external 'BluetoothApis.dll' name 'BluetoothIsConnectable';import Foreign
import Foreign.C.Types
import Foreign.C.String
foreign import stdcall safe "BluetoothIsConnectable"
c_BluetoothIsConnectable :: Ptr () -> IO CInt
-- hRadio : HANDLE optional -> Ptr ()
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。open Ctypes
open Foreign
let bluetoothisconnectable =
foreign "BluetoothIsConnectable"
((ptr void) @-> returning int32_t)
(* hRadio : HANDLE optional -> (ptr void) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)(cffi:define-foreign-library bluetoothapis (t "BluetoothApis.dll"))
(cffi:use-foreign-library bluetoothapis)
(cffi:defcfun ("BluetoothIsConnectable" bluetooth-is-connectable :convention :stdcall) :int32
(h-radio :pointer)) ; HANDLE optional
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。use Win32::API;
my $BluetoothIsConnectable = Win32::API::More->new('BluetoothApis',
'BOOL BluetoothIsConnectable(HANDLE hRadio)');
# my $ret = $BluetoothIsConnectable->Call($hRadio);
# hRadio : HANDLE optional -> HANDLE
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。