// bthddi.h
typedef enum _ACL_MODE {
ACL_MODE_ACTIVE,
ACL_MODE_HOLD,
ACL_MODE_SNIFF,
ACL_MODE_PARK,
ACL_MODE_ENTER_ACTIVE,
ACL_MODE_ENTER_HOLD,
ACL_MODE_ENTER_SNIFF,
ACL_MODE_ENTER_PARK,
ACL_DISCONNECTED
} ACL_MODE;
View the official Windows Driver Kit DDI referenceNo description available.
The ACL_MODE enumeration type is used to list the possible states of an ACL connection.
ACL_MODE_ACTIVEThis value indicates the ACL is in an active state.
ACL_MODE_HOLDThis value indicates the ACL is in a hold state.
ACL_MODE_SNIFFThis value indicates the ACL is in a sniffed state.
ACL_MODE_PARKThis value indicates the ACL is in a parked state.
ACL_MODE_ENTER_ACTIVEThis value indicates the ACL is entering an active state.
ACL_MODE_ENTER_HOLDThis value indicates the ACL is entering a hold state.
ACL_MODE_ENTER_SNIFFThis value indicates the ACL is entering a sniffed state.
ACL_MODE_ENTER_PARKThis value indicates the ACL is entering a parked state.
ACL_DISCONNECTEDThis value indicates the ACL is disconnected.
The _BRB_ACL_GET_MODE structure uses this enumeration.