// hbapiwmi.h
typedef struct _SendCTPassThru_OUT {
ULONG HBAStatus;
ULONG TotalResponseBufferCount;
ULONG ActualResponseBufferCount;
UCHAR ResponseBuffer[1];
} SendCTPassThru_OUT, *PSendCTPassThru_OUT;
View the official Windows Driver Kit DDI referenceNo description available.
The SendCTPassThru_OUT structure is used to report the output parameter data of the SendCTPassThru WMI method to the WMI client.
HBAStatusContains the status of the operation. For a list of allowed values and their descriptions, see HBA_STATUS.
TotalResponseBufferCountContains the size in bytes of the results common transport (CT) command.
ActualResponseBufferCountContains the size in bytes of the data that was actually retrieved.
ResponseBufferContains the results of the common transport command.
The WMI tool suite generates a declaration of the SendCTPassThru_OUT structure in Hbapiwmi.h when it compiles the MSFC_HBAAdapterMethods WMI Class.