// hbapiwmi.h
typedef struct _MSFC_EventBuffer {
ULONG EventType;
ULONG EventInfo[4];
} MSFC_EventBuffer, *PMSFC_EventBuffer;
View the official Windows Driver Kit DDI referenceNo description available.
The MSFC_EventBuffer structure is used in conjunction with the GetEventBuffer method to retrieve the next events in the HBA's event queue.
EventTypeIndicates the type of the event. The values that can be assigned to this member are defined by the EVENT_TYPE_QUALIFIERS WMI class qualifier.
EventInfoContains a structure of type HBA_EventInfo that holds information about the events that were retrieved.
The WMI tool suite generates a declaration for this structure in hbapiwm.h after compiling the MSFC_EventBuffer WMI Class.
The HBA_EventInfo structure is declared in hbaapi.h. You must include hbaapi.h to reference this structure.