// mpiowmi.h
typedef struct _MPIO_EventEntry {
ULONGLONG TimeStamp;
ULONG Severity;
WCHAR Component[63 + 1];
WCHAR EventDescription[63 + 1];
} MPIO_EventEntry, *PMPIO_EventEntry;
View the official Windows Driver Kit DDI referenceNo description available.
The MPIO_EventEntry structure is used to return events that MPIO has logged.
TimeStampA 64-bitfield that specifies the timestamp for the event entry.
SeverityA 32-bitfield that indicates the severity of the reported event.
ComponentA string that indicates the component to which this event belongs.
EventDescriptionA string that indicates the event description.