Condividi tramite


PFNBLUETOOTH_GATT_EVENT_CALLBACK funzione di callback (bthledef.h)

I driver di profilo implementano un callback di eventi GATT Bluetooth da chiamare ogni volta che il valore di una caratteristica specifica cambia.

Sintassi

PFNBLUETOOTH_GATT_EVENT_CALLBACK PfnbluetoothGattEventCallback;

void PfnbluetoothGattEventCallback(
  [in]           BTH_LE_GATT_EVENT_TYPE EventType,
  [in]           PVOID EventOutParameter,
  [in, optional] PVOID Context
)
{...}

Parametri

[in] EventType

Tipo di evento GATT.

[in] EventOutParameter

Puntatore a una struttura BLUETOOTH_GATT_VALUE_CHANGED_EVENT .

[in, optional] Context

Contesto specificato dal driver del profilo nel parametro CallbackContext della funzione BluetoothGATTRegisterEvent quando il driver del profilo ha registrato la funzione di callback GATT.

Valore restituito

nessuno

Requisiti

Requisito Valore
Client minimo supportato Supportato in Windows 8 e versioni successive di Windows.
Piattaforma di destinazione Desktop
Intestazione bthledef.h

Vedi anche

BLUETOOTH_GATT_VALUE_CHANGED_EVENT

BTH_LE_GATT_EVENT_TYPE

BluetoothGATTRegisterEvent