// bthioctl.h
typedef struct _BTH_COMMAND_HEADER {
USHORT OpCode;
UCHAR TotalParameterLength;
} BTH_COMMAND_HEADER, *PBTH_COMMAND_HEADER;
View the official Windows Driver Kit DDI referenceNo description available.
The BTH_COMMAND_HEADER structure specifies header information for a vendor-specific HCI command.
OpCodeA USHORT value that specifies the operation code for the command.
TotalParameterLengthThe size, in bytes, of the command payload, which is the data that follows the BTH_COMMAND_HEADER structure.
The BTH_COMMAND_HEADER structure specifies header information in the HciHeader member of the BTH_VENDOR_SPECIFIC_COMMAND structure. It also provides the header information for the output of the IOCTL_BTH_HCI_VENDOR_COMMAND IOCTL.