SMBIOS_MANAGEMENT_DEVICE_THRESHOLD_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _SMBIOS_H
#include <pshpack1.h>

typedef struct _SMBIOS_MANAGEMENT_DEVICE_THRESHOLD_INFORMATION
{
    SMBIOS_HEADER Header;
    // 2.3+
    USHORT LowerThresholdNonCritical;
    USHORT UpperThresholdNonCritical;
    USHORT LowerThresholdCritical;
    USHORT UpperThresholdCritical;
    USHORT LowerThresholdNonRecoverable;
    USHORT UpperThresholdNonRecoverable;
} SMBIOS_MANAGEMENT_DEVICE_THRESHOLD_INFORMATION, *PSMBIOS_MANAGEMENT_DEVICE_THRESHOLD_INFORMATION;

#include <poppack.h>
#endif

View code on GitHub

No description available.