Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/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 ReadMsgQueuefunction and pass BTEVENTin the lpBufferparameter to receive the event data.

Requirements

Header bt_api.h
Windows Embedded CE Windows Embedded CE 6.0 and later
Windows Mobile Pocket PC for Windows Mobile Version 5.0 and later, Smartphone for Windows Mobile Version 5.0 and later

See Also