ホーム › Devices.Bluetooth › BluetoothSelectDevices
BluetoothSelectDevices
関数Bluetoothデバイス選択ダイアログを表示する。
シグネチャ
// bthprops.cpl
#include <windows.h>
BOOL BluetoothSelectDevices(
BLUETOOTH_SELECT_DEVICE_PARAMS* pbtsdp
);パラメーター
| 名前 | 型 | 方向 | 説明 |
|---|---|---|---|
| pbtsdp | BLUETOOTH_SELECT_DEVICE_PARAMS* | inout | デバイス選択ウィザードの設定と結果を保持する構造体ポインタ。 |
戻り値の型: BOOL
各言語での呼び出し定義
// bthprops.cpl
#include <windows.h>
BOOL BluetoothSelectDevices(
BLUETOOTH_SELECT_DEVICE_PARAMS* pbtsdp
);[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("bthprops.cpl", SetLastError = true, ExactSpelling = true)]
static extern bool BluetoothSelectDevices(
IntPtr pbtsdp // BLUETOOTH_SELECT_DEVICE_PARAMS* in/out
);<DllImport("bthprops.cpl", SetLastError:=True, ExactSpelling:=True)>
Public Shared Function BluetoothSelectDevices(
pbtsdp As IntPtr ' BLUETOOTH_SELECT_DEVICE_PARAMS* in/out
) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function' pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out
Declare PtrSafe Function BluetoothSelectDevices Lib "bthprops.cpl" ( _
ByVal pbtsdp As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
BluetoothSelectDevices = ctypes.windll.LoadLibrary("bthprops.cpl").BluetoothSelectDevices
BluetoothSelectDevices.restype = wintypes.BOOL
BluetoothSelectDevices.argtypes = [
ctypes.c_void_p, # pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out
]
# GetLastError: use ctypes.GetLastError() (or ctypes.WinDLL(use_last_error=True))require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('bthprops.cpl')
BluetoothSelectDevices = Fiddle::Function.new(
lib['BluetoothSelectDevices'],
[
Fiddle::TYPE_VOIDP, # pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out
],
Fiddle::TYPE_INT)#[link(name = "bthprops.cpl")]
extern "system" {
fn BluetoothSelectDevices(
pbtsdp: *mut BLUETOOTH_SELECT_DEVICE_PARAMS // BLUETOOTH_SELECT_DEVICE_PARAMS* in/out
) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("bthprops.cpl", SetLastError = true)]
public static extern bool BluetoothSelectDevices(IntPtr pbtsdp);
"@
$api = Add-Type -MemberDefinition $sig -Name 'bthprops.cpl_BluetoothSelectDevices' -Namespace Win32 -PassThru
# $api::BluetoothSelectDevices(pbtsdp)#uselib "bthprops.cpl"
#func global BluetoothSelectDevices "BluetoothSelectDevices" sptr
; BluetoothSelectDevices varptr(pbtsdp) ; 戻り値は stat
; pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。出力引数:
#uselib "bthprops.cpl" #cfunc global BluetoothSelectDevices "BluetoothSelectDevices" var ; res = BluetoothSelectDevices(pbtsdp) ; pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "bthprops.cpl" #cfunc global BluetoothSelectDevices "BluetoothSelectDevices" sptr ; res = BluetoothSelectDevices(varptr(pbtsdp)) ; pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out -> "sptr" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
出力引数:
; BOOL BluetoothSelectDevices(BLUETOOTH_SELECT_DEVICE_PARAMS* pbtsdp) #uselib "bthprops.cpl" #cfunc global BluetoothSelectDevices "BluetoothSelectDevices" var ; res = BluetoothSelectDevices(pbtsdp) ; pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out -> "var" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; BOOL BluetoothSelectDevices(BLUETOOTH_SELECT_DEVICE_PARAMS* pbtsdp) #uselib "bthprops.cpl" #cfunc global BluetoothSelectDevices "BluetoothSelectDevices" intptr ; res = BluetoothSelectDevices(varptr(pbtsdp)) ; pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out -> "intptr" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
bthprops_cpl = windows.NewLazySystemDLL("bthprops.cpl")
procBluetoothSelectDevices = bthprops_cpl.NewProc("BluetoothSelectDevices")
)
// pbtsdp (BLUETOOTH_SELECT_DEVICE_PARAMS* in/out)
r1, _, err := procBluetoothSelectDevices.Call(
uintptr(pbtsdp),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // BOOLfunction BluetoothSelectDevices(
pbtsdp: Pointer // BLUETOOTH_SELECT_DEVICE_PARAMS* in/out
): BOOL; stdcall;
external 'bthprops.cpl' name 'BluetoothSelectDevices';result := DllCall("bthprops.cpl\BluetoothSelectDevices"
, "Ptr", pbtsdp ; BLUETOOTH_SELECT_DEVICE_PARAMS* in/out
, "Int") ; return: BOOL●BluetoothSelectDevices(pbtsdp) = DLL("bthprops.cpl", "bool BluetoothSelectDevices(void*)")
# 呼び出し: BluetoothSelectDevices(pbtsdp)
# pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。const std = @import("std");
extern "bthprops.cpl" fn BluetoothSelectDevices(
pbtsdp: [*c]BLUETOOTH_SELECT_DEVICE_PARAMS // BLUETOOTH_SELECT_DEVICE_PARAMS* in/out
) callconv(std.os.windows.WINAPI) i32;proc BluetoothSelectDevices(
pbtsdp: ptr BLUETOOTH_SELECT_DEVICE_PARAMS # BLUETOOTH_SELECT_DEVICE_PARAMS* in/out
): int32 {.importc: "BluetoothSelectDevices", stdcall, dynlib: "bthprops.cpl".}pragma(lib, "bthprops.cpl");
extern(Windows)
int BluetoothSelectDevices(
BLUETOOTH_SELECT_DEVICE_PARAMS* pbtsdp // BLUETOOTH_SELECT_DEVICE_PARAMS* in/out
);ccall((:BluetoothSelectDevices, "bthprops.cpl"), stdcall, Int32,
(Ptr{BLUETOOTH_SELECT_DEVICE_PARAMS},),
pbtsdp)
# pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out -> Ptr{BLUETOOTH_SELECT_DEVICE_PARAMS}
# stdcall は 32bit のみ意味を持つ(x64 では無視)。local ffi = require("ffi")
ffi.cdef[[
int32_t BluetoothSelectDevices(
void* pbtsdp);
]]
local bthprops.cpl = ffi.load("bthprops.cpl")
-- bthprops.cpl.BluetoothSelectDevices(pbtsdp)
-- pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。const koffi = require('koffi');
const lib = koffi.load('bthprops.cpl');
const BluetoothSelectDevices = lib.func('__stdcall', 'BluetoothSelectDevices', 'int32_t', ['void *']);
// BluetoothSelectDevices(pbtsdp)
// pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out -> 'void *'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。const lib = Deno.dlopen("bthprops.cpl", {
BluetoothSelectDevices: { parameters: ["pointer"], result: "i32" },
});
// lib.symbols.BluetoothSelectDevices(pbtsdp)
// pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out -> "pointer"
// 文字列引数は "buffer"(NUL 終端のバイト列を Uint8Array で渡す)。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。<?php
$ffi = FFI::cdef(<<<C
int32_t BluetoothSelectDevices(
void* pbtsdp);
C, "bthprops.cpl");
// $ffi->BluetoothSelectDevices(pbtsdp);
// pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out
// 構造体/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 Bthprops.cpl extends StdCallLibrary {
Bthprops.cpl INSTANCE = Native.load("bthprops.cpl", Bthprops.cpl.class);
boolean BluetoothSelectDevices(
Pointer pbtsdp // BLUETOOTH_SELECT_DEVICE_PARAMS* in/out
);
}@[Link("bthprops.cpl")]
lib Libbthprops.cpl
fun BluetoothSelectDevices = BluetoothSelectDevices(
pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* # BLUETOOTH_SELECT_DEVICE_PARAMS* in/out
) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。import 'dart:ffi';
import 'package:ffi/ffi.dart';
typedef BluetoothSelectDevicesNative = Int32 Function(Pointer<Void>);
typedef BluetoothSelectDevicesDart = int Function(Pointer<Void>);
final BluetoothSelectDevices = DynamicLibrary.open('bthprops.cpl')
.lookupFunction<BluetoothSelectDevicesNative, BluetoothSelectDevicesDart>('BluetoothSelectDevices');
// pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out -> Pointer<Void>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。{$mode objfpc}{$H+}
function BluetoothSelectDevices(
pbtsdp: Pointer // BLUETOOTH_SELECT_DEVICE_PARAMS* in/out
): BOOL; stdcall;
external 'bthprops.cpl' name 'BluetoothSelectDevices';import Foreign
import Foreign.C.Types
import Foreign.C.String
foreign import stdcall safe "BluetoothSelectDevices"
c_BluetoothSelectDevices :: Ptr () -> IO CInt
-- pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out -> Ptr ()
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。open Ctypes
open Foreign
let bluetoothselectdevices =
foreign "BluetoothSelectDevices"
((ptr void) @-> returning int32_t)
(* pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out -> (ptr void) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)(cffi:define-foreign-library bthprops.cpl (t "bthprops.cpl"))
(cffi:use-foreign-library bthprops.cpl)
(cffi:defcfun ("BluetoothSelectDevices" bluetooth-select-devices :convention :stdcall) :int32
(pbtsdp :pointer)) ; BLUETOOTH_SELECT_DEVICE_PARAMS* in/out
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。use Win32::API;
my $BluetoothSelectDevices = Win32::API::More->new('bthprops.cpl',
'BOOL BluetoothSelectDevices(LPVOID pbtsdp)');
# my $ret = $BluetoothSelectDevices->Call($pbtsdp);
# pbtsdp : BLUETOOTH_SELECT_DEVICE_PARAMS* in/out -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。