Share via


OBEX_EVENT (Compact 2013)

3/26/2014

This enumeration is used to identify an event and its properties.

Syntax

typedef enum _OBEX_EVENT {
  OE_QUERY_PASSWORD = 0,
  OE_NEW_CONNECTION = OE_QUERY_PASSWORD + 1,
  OE_NEW_COMMAND = OE_NEW_CONNECTION + 1,
  OE_ABORT = OE_NEW_COMMAND + 1,
  OE_DISCONNECT = OE_ABORT + 1,
  OE_DEVICE_ARRIVAL = OE_DISCONNECT + 1,
  OE_DEVICE_DEPARTURE = OE_DEVICE_ARRIVAL + 1,
  OE_DEVICE_UPDATE = OE_DEVICE_DEPARTURE + 1
} OBEX_EVENT, *LPOBEX_EVENT;

Elements

  • OE_QUERY_PASSWORD
    Reserved; query password.
  • OE_NEW_CONNECTION
    Reserved; new connection.
  • OE_NEW_COMMAND
    Reserved; new connection.
  • OE_ABORT
    Reserved; abort command.
  • OE_DISCONNECT
    Reserved; disconnect.
  • OE_DEVICE_ARRIVAL
    New device is available.
  • OE_DEVICE_DEPARTURE
    Device is no longer available.
  • OE_DEVICE_UPDATE
    State of the device has changed.

Requirements

Header

obex.h

See Also

Reference

OBEX Enumerations