// bthddi.h
typedef enum _SCO_INDICATION_CODE {
ScoIndicationAddReference,
ScoIndicationReleaseReference,
ScoIndicationRemoteConnect,
ScoIndicationRemoteDisconnect
} SCO_INDICATION_CODE, *PSCO_INDICATION_CODE;
View the official Windows Driver Kit DDI referenceNo description available.
The SCO_INDICATION_CODE enumeration type describes the type of an incoming SCO connection or bonding state change. The Bluetooth driver stack passes a value from this enumeration in the Indication argument of a profile driver's SCO Callback Function.
ScoIndicationAddReferenceThis value indicates that the profile driver should add one reference to its device object.
ScoIndicationReleaseReferenceThis value indicates that the profile driver can release one reference to its device object.
ScoIndicationRemoteConnectThis value indicates to a profile driver that a remote device is trying to connect to the local radio. Profile drivers accept or reject this request by building and sending a BRB_SCO_OPEN_CHANNEL_RESPONSE request.
ScoIndicationRemoteDisconnectThis value indicates to a profile driver that a remote device is disconnecting from the local radio.