// hbapiwmi.h
typedef struct _GetEventBuffer_OUT {
ULONG HBAStatus;
ULONG EventCount;
MSFC_EventBuffer Events[1];
} GetEventBuffer_OUT, *PGetEventBuffer_OUT;
View the official Windows Driver Kit DDI referenceNo description available.
The GetEventBuffer_OUT structure is used to report the output parameter data of the GetEventBuffer WMI method to the WMI client.
HBAStatusContains a value associated with the WMI class qualifier HBA_STATUS that indicates the result of an HBA query operation.
EventCountIndicates the number of events in Events that were retrieved by the GetEventBuffer WMI method.
EventsContains an array of type MSFC_EventBuffer that contains the next events in the HBA's event queue.
The GetEventBuffer method retrieves the next events in the HBA's event queue.
The WMI tool suite generates a declaration of the GetEventBuffer_OUT structure in Hbapiwmi.h when it compiles the MSFC_HBAAdapterMethods WMI Class.