SYSTEM_WHEA_IPMI_HARDWARE_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTEXAPI_H

// rev
typedef struct _SYSTEM_WHEA_IPMI_HARDWARE_INFORMATION
{
    ULONGLONG RecordId;     // IPMI SEL (System Event Log) record identifier
    UCHAR EventType;        // IPMI event/reading type code
    UCHAR SensorType;       // IPMI sensor type (e.g. temperature, voltage, processor)
    USHORT GeneratorId;     // ID of the entity that logged the event
    UCHAR EvmRevision;      // Event Message format revision
    UCHAR RecordType;       // SEL record type (e.g. system event vs OEM)
    UCHAR Data[4];          // Event-specific data bytes
} SYSTEM_WHEA_IPMI_HARDWARE_INFORMATION, *PSYSTEM_WHEA_IPMI_HARDWARE_INFORMATION;

#endif

View code on GitHub

NtDoc

No description available.