Share via


OBEX_EVENT

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

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
    Query password. Reserved for future use.
  • OE_NEW_CONNECTION
    New connection. Reserved for future use.
  • OE_NEW_COMMAND
    New command. Reserved for future use.
  • OE_ABORT
    Abort command. Reserved for future use.
  • OE_DISCONNECT
    Disconnect. Reserved for future use.
  • OE_DEVICE_ARRIVAL
    New device is available.
  • OE_DEVICE_DEPARTURE
    Device is no longer available.
  • OE_DEVICE_UPDATE
    State of the device has change.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Obex.idl.

See Also

OBEX Enumerations | Object Exchange Protocol

 Last updated on Friday, April 09, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.