// bthddi.h
typedef enum _SCO_RETRANSMISSION_EFFORT {
SCO_RETRANSMISSION_NONE,
SCO_RETRANSMISSION_MIN1_POWER,
SCO_RETRANSMISSION_MIN1_QUALITY,
SCO_RETRANSMISSION_DONT_CARE
} SCO_RETRANSMISSION_EFFORT, *PSCO_RETRANSMISSION_EFFORT;
View the official Windows Driver Kit DDI referenceNo description available.
The SCO_RETRANSMISSION_EFFORT enumeration type is used to determine the retransmission policies of a SCO channel.
SCO_RETRANSMISSION_NONEThe profile driver specifies that there should be no retransmissions on the channel.
SCO_RETRANSMISSION_MIN1_POWERThe profile driver specifies that there should be at least one retransmission on the channel. Any retransmissions that are performed should be optimized for power consumption.
SCO_RETRANSMISSION_MIN1_QUALITYThe profile driver specifies that there should be at least one retransmission on the channel. Any retransmissions that are performed should be optimized for link quality.
SCO_RETRANSMISSION_DONT_CAREThe profile driver specifies that retransmissions can occur, but are not required.