// 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 reference
No description available.
The ACL_MODE enumeration type is used to list the possible states of an ACL connection.
ACL_MODE_ACTIVE
This value indicates the ACL is in an active state.
ACL_MODE_HOLD
This value indicates the ACL is in a hold state.
ACL_MODE_SNIFF
This value indicates the ACL is in a sniffed state.
ACL_MODE_PARK
This value indicates the ACL is in a parked state.
ACL_MODE_ENTER_ACTIVE
This value indicates the ACL is entering an active state.
ACL_MODE_ENTER_HOLD
This value indicates the ACL is entering a hold state.
ACL_MODE_ENTER_SNIFF
This value indicates the ACL is entering a sniffed state.
ACL_MODE_ENTER_PARK
This value indicates the ACL is entering a parked state.
ACL_DISCONNECTED
This value indicates the ACL is disconnected.
The _BRB_ACL_GET_MODE structure uses this enumeration.