#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;
View code on GitHub
No description available.