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

BluetoothGetRadioInfo

関数
指定したBluetoothラジオの情報を取得する。
DLLBluetoothApis.dll呼出規約winapiSetLastErrorあり対応OSWindows Vista 以降

シグネチャ

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

DWORD BluetoothGetRadioInfo(
    HANDLE hRadio,
    BLUETOOTH_RADIO_INFO* pRadioInfo
);

パラメーター

名前方向説明
hRadioHANDLEin情報を取得する対象Bluetoothラジオのハンドル。
pRadioInfoBLUETOOTH_RADIO_INFO*inoutラジオの詳細情報を受け取る構造体ポインタ。dwSizeの設定が必要。

戻り値の型: DWORD

各言語での呼び出し定義

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

DWORD BluetoothGetRadioInfo(
    HANDLE hRadio,
    BLUETOOTH_RADIO_INFO* pRadioInfo
);
[DllImport("BluetoothApis.dll", SetLastError = true, ExactSpelling = true)]
static extern uint BluetoothGetRadioInfo(
    IntPtr hRadio,   // HANDLE
    IntPtr pRadioInfo   // BLUETOOTH_RADIO_INFO* in/out
);
<DllImport("BluetoothApis.dll", SetLastError:=True, ExactSpelling:=True)>
Public Shared Function BluetoothGetRadioInfo(
    hRadio As IntPtr,   ' HANDLE
    pRadioInfo As IntPtr   ' BLUETOOTH_RADIO_INFO* in/out
) As UInteger
End Function
' hRadio : HANDLE
' pRadioInfo : BLUETOOTH_RADIO_INFO* in/out
Declare PtrSafe Function BluetoothGetRadioInfo Lib "bluetoothapis" ( _
    ByVal hRadio As LongPtr, _
    ByVal pRadioInfo As LongPtr) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。
import ctypes
from ctypes import wintypes

BluetoothGetRadioInfo = ctypes.windll.bluetoothapis.BluetoothGetRadioInfo
BluetoothGetRadioInfo.restype = wintypes.DWORD
BluetoothGetRadioInfo.argtypes = [
    wintypes.HANDLE,  # hRadio : HANDLE
    ctypes.c_void_p,  # pRadioInfo : BLUETOOTH_RADIO_INFO* in/out
]
# GetLastError: use ctypes.GetLastError() (or ctypes.WinDLL(use_last_error=True))
require 'fiddle'
require 'fiddle/import'

lib = Fiddle.dlopen('BluetoothApis.dll')
BluetoothGetRadioInfo = Fiddle::Function.new(
  lib['BluetoothGetRadioInfo'],
  [
    Fiddle::TYPE_VOIDP,  # hRadio : HANDLE
    Fiddle::TYPE_VOIDP,  # pRadioInfo : BLUETOOTH_RADIO_INFO* in/out
  ],
  -Fiddle::TYPE_INT)
#[link(name = "bluetoothapis")]
extern "system" {
    fn BluetoothGetRadioInfo(
        hRadio: *mut core::ffi::c_void,  // HANDLE
        pRadioInfo: *mut BLUETOOTH_RADIO_INFO  // BLUETOOTH_RADIO_INFO* in/out
    ) -> u32;
}
// crates: windows-sys provides ready-made bindings for this API.
$sig = @"
[DllImport("BluetoothApis.dll", SetLastError = true)]
public static extern uint BluetoothGetRadioInfo(IntPtr hRadio, IntPtr pRadioInfo);
"@
$api = Add-Type -MemberDefinition $sig -Name 'BluetoothApis_BluetoothGetRadioInfo' -Namespace Win32 -PassThru
# $api::BluetoothGetRadioInfo(hRadio, pRadioInfo)
#uselib "BluetoothApis.dll"
#func global BluetoothGetRadioInfo "BluetoothGetRadioInfo" sptr, sptr
; BluetoothGetRadioInfo hRadio, varptr(pRadioInfo)   ; 戻り値は stat
; hRadio : HANDLE -> "sptr"
; pRadioInfo : BLUETOOTH_RADIO_INFO* in/out -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。
出力引数:
#uselib "BluetoothApis.dll"
#cfunc global BluetoothGetRadioInfo "BluetoothGetRadioInfo" sptr, var
; res = BluetoothGetRadioInfo(hRadio, pRadioInfo)
; hRadio : HANDLE -> "sptr"
; pRadioInfo : BLUETOOTH_RADIO_INFO* in/out -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
出力引数:
; DWORD BluetoothGetRadioInfo(HANDLE hRadio, BLUETOOTH_RADIO_INFO* pRadioInfo)
#uselib "BluetoothApis.dll"
#cfunc global BluetoothGetRadioInfo "BluetoothGetRadioInfo" intptr, var
; res = BluetoothGetRadioInfo(hRadio, pRadioInfo)
; hRadio : HANDLE -> "intptr"
; pRadioInfo : BLUETOOTH_RADIO_INFO* in/out -> "var"
; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。
import (
	"golang.org/x/sys/windows"
	"unsafe"
)

var (
	bluetoothapis = windows.NewLazySystemDLL("BluetoothApis.dll")
	procBluetoothGetRadioInfo = bluetoothapis.NewProc("BluetoothGetRadioInfo")
)

// hRadio (HANDLE), pRadioInfo (BLUETOOTH_RADIO_INFO* in/out)
r1, _, err := procBluetoothGetRadioInfo.Call(
	uintptr(hRadio),
	uintptr(pRadioInfo),
)
_ = err  // syscall.Errno (valid when the call sets last-error)
_ = r1   // DWORD
function BluetoothGetRadioInfo(
  hRadio: THandle;   // HANDLE
  pRadioInfo: Pointer   // BLUETOOTH_RADIO_INFO* in/out
): DWORD; stdcall;
  external 'BluetoothApis.dll' name 'BluetoothGetRadioInfo';
result := DllCall("BluetoothApis\BluetoothGetRadioInfo"
    , "Ptr", hRadio   ; HANDLE
    , "Ptr", pRadioInfo   ; BLUETOOTH_RADIO_INFO* in/out
    , "UInt")   ; return: DWORD
●BluetoothGetRadioInfo(hRadio, pRadioInfo) = DLL("BluetoothApis.dll", "dword BluetoothGetRadioInfo(void*, void*)")
# 呼び出し: BluetoothGetRadioInfo(hRadio, pRadioInfo)
# hRadio : HANDLE -> "void*"
# pRadioInfo : BLUETOOTH_RADIO_INFO* in/out -> "void*"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。
const std = @import("std");

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

typedef BluetoothGetRadioInfoNative = Uint32 Function(Pointer<Void>, Pointer<Void>);
typedef BluetoothGetRadioInfoDart = int Function(Pointer<Void>, Pointer<Void>);
final BluetoothGetRadioInfo = DynamicLibrary.open('BluetoothApis.dll')
    .lookupFunction<BluetoothGetRadioInfoNative, BluetoothGetRadioInfoDart>('BluetoothGetRadioInfo');
// hRadio : HANDLE -> Pointer<Void>
// pRadioInfo : BLUETOOTH_RADIO_INFO* in/out -> Pointer<Void>
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。
{$mode objfpc}{$H+}
function BluetoothGetRadioInfo(
  hRadio: THandle;   // HANDLE
  pRadioInfo: Pointer   // BLUETOOTH_RADIO_INFO* in/out
): DWORD; stdcall;
  external 'BluetoothApis.dll' name 'BluetoothGetRadioInfo';
import Foreign
import Foreign.C.Types
import Foreign.C.String

foreign import stdcall safe "BluetoothGetRadioInfo"
  c_BluetoothGetRadioInfo :: Ptr () -> Ptr () -> IO Word32
-- hRadio : HANDLE -> Ptr ()
-- pRadioInfo : BLUETOOTH_RADIO_INFO* in/out -> Ptr ()
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。
open Ctypes
open Foreign

let bluetoothgetradioinfo =
  foreign "BluetoothGetRadioInfo"
    ((ptr void) @-> (ptr void) @-> returning uint32_t)
(* hRadio : HANDLE -> (ptr void) *)
(* pRadioInfo : BLUETOOTH_RADIO_INFO* in/out -> (ptr void) *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)
(cffi:define-foreign-library bluetoothapis (t "BluetoothApis.dll"))
(cffi:use-foreign-library bluetoothapis)

(cffi:defcfun ("BluetoothGetRadioInfo" bluetooth-get-radio-info :convention :stdcall) :uint32
  (h-radio :pointer)   ; HANDLE
  (p-radio-info :pointer))   ; BLUETOOTH_RADIO_INFO* in/out
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。
use Win32::API;
my $BluetoothGetRadioInfo = Win32::API::More->new('BluetoothApis',
    'DWORD BluetoothGetRadioInfo(HANDLE hRadio, LPVOID pRadioInfo)');
# my $ret = $BluetoothGetRadioInfo->Call($hRadio, $pRadioInfo);
# hRadio : HANDLE -> HANDLE
# pRadioInfo : BLUETOOTH_RADIO_INFO* in/out -> LPVOID
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。

関連項目

使用する型