Partager via


BTEVENT (Windows Embedded CE 6.0)

1/6/2010

This structure stores information about the event notification sent by the Bluetooth stack.

Syntax

typedef struct _BTEVENT {
  DWORD dwEventId;
  DWORD dwReserved;
  BYTE baEventData[64];
} BTEVENT, *PBTEVENT;

Members

  • dwEventId
    Specifies the event identifier.
  • dwReserved
    Reserved.
  • baEventData[64]
    Data about the event.

Remarks

This structure is used by an application on the Bluetooth device to retrieve information about event sent by the stack. The event notifications are sent in a message queue. To read the messages in the queue, the application must call the ReadMsgQueue function and pass BTEVENT in the lpBuffer parameter to receive the event data. For more Windows Embedded CE information, see Handling Events from the Bluetooth Stack.

Requirements

Header bt_api.h
Windows Embedded CE Windows Embedded CE 6.0 and later

See Also

Reference

Bluetooth Application Development Structures
RequestBluetoothNotifications
StopBluetoothNotifications

Concepts

Stack-Events Handling Sample