_BRB_SCO_UNREGISTER_SERVER structure (bthddi.h)

A profile driver uses the _BRB_SCO_UNREGISTER_SERVER structure to unregister itself as a server capable of receiving SCO connections from remote Bluetooth devices.

Syntax

struct _BRB_SCO_UNREGISTER_SERVER {
  BRB_HEADER Hdr;
  BTH_ADDR   BtAddress;
  PVOID      ServerHandle;
};

Members

Hdr

A BRB_HEADER structure that contains information about the current BRB.

BtAddress

The address of the remote device.

ServerHandle

The handle of the SCO server to unregister, that was obtained earlier from BRB_SCO_REGISTER_SERVER.

Remarks

To unregister itself as a SCO server, a profile driver should build and send a BRB_SCO_UNREGISTER_SERVER request.

Requirements

Requirement Value
Minimum supported client Versions:_Supported in Windows Vista, and later.
Header bthddi.h (include Bthddi.h)

See also

BRB_HEADER

BRB_SCO_UNREGISTER_SERVER