PFN_AUTHENTICATION_CALLBACK_EX回调函数 (bluetoothapis.h)

PFN_AUTHENTICATION_CALLBACK_EX 函数是与 BluetoothRegisterForAuthenticationEx 函数结合使用的回调函数原型。

注意 Windows Vista SP2 和 Windows 7 支持此结构。
 

语法

PFN_AUTHENTICATION_CALLBACK_EX PfnAuthenticationCallbackEx;

BOOL PfnAuthenticationCallbackEx(
  [in, optional] LPVOID pvParam,
  [in]           PBLUETOOTH_AUTHENTICATION_CALLBACK_PARAMS pAuthCallbackParams
)
{...}

参数

[in, optional] pvParam

可选。 以前传递到 BluetoothRegisterForAuthentication 函数的上下文指针。

[in] pAuthCallbackParams

一个BLUETOOTH_AUTHENTICATION_CALLBACK_PARAMS结构,其中包含特定于响应身份验证请求的蓝牙设备的设备和身份验证配置信息。

返回值

系统忽略此函数的返回值。

要求

要求
最低受支持的客户端 Windows Vista、Windows XP 和 SP2 [仅限桌面应用]
最低受支持的服务器 无受支持的版本
目标平台 Windows
标头 bluetoothapis.h (包括 Bthsdpdef.h、BluetoothAPIs.h)

另请参阅

BluetoothRegisterForAuthenticationEx

PFN_AUTHENTICATION_CALLBACK