Share via


BTSSPEvent (Compact 7)

3/12/2014

This structure contains the data associated with Bluetooth Secure Simple Pairing (SSP) events.

Syntax

typedef struct BTSSPEvent {
    DWORD                dwSize;
    BT_ADDR              RemoteDevice;
    ULONG                BTECode;
    union {
        BT_SSP_USER_CONFIRMATION_REQUEST_EVENT  UserConfirmationRequest;
        BT_SSP_PASSKEY_REQUEST_EVENT            PasskeyRequest;
        BT_SSP_PAIRING_COMPLETE_EVENT           PairingComplete;
        BT_SSP_USER_PASSKEY_NOTIFICATION_EVENT  UserPasskeyNotification;
        BT_SSP_KEYPRESS_NOTIFICATION_EVENT      KeypressNotification;
        BT_SSP_IO_CAPABILITY_REQUEST_EVENT      IoCapabilityRequest;
        BT_SSP_IO_CAPABILITY_RESPONSE_EVENT     IoCapabilityResponse;
        BT_SSP_REMOTE_OOB_DATA_REQUEST_EVENT    RemoteOOBDataRequest;
        BT_SSP_PIN_CODE_REQUEST_EVENT           PINCodeRequest;
        BT_SSP_IO_CAPABILITY_NOTIFICATION_EVENT IoCapabilityNotification;
        BT_SSP_AUTHENTICATION_COMPLETED_EVENT   AuthenticationCompleted;
    };
} BTSSPEvent;

Members

  • dwSize
    Size of this structure.
  • RemoteDevice
    Address of the remote Bluetooth device as a BT_ADDR type.
  • BTECode
    Identifies the type of the associated SSP event and the structure within the union that follows. One of the event identifiers listed below with the associated structures. All such events are in the BTE_CLASS_SSP event class.
  • PasskeyRequest
    Structure of type BT_SSP_PASSKEY_REQUEST_EVENT that is present when the BTECode member is set to BTE_SSP_USER_PASSKEY_REQUEST.

Remarks

This structure contains the event data for BTE_CLASS_SSP events. It is used as the baEventData member of BTEVENT structures associated with BTE_CLASS_SSP events. The BTEVENT's dwEventId field and the BTSSPEvent’s BTECode field both contain the same event code.

Requirements

Header

bt_api.h

See Also

Reference

Bluetooth Application Development Structures
RequestBluetoothNotifications
StopBluetoothNotifications
Bluetooth Application Development Events