#ifndef _SMBIOS_H
#include <pshpack1.h>
typedef struct _SMBIOS_SYSTEM_RESET_INFORMATION
{
SMBIOS_HEADER Header;
// 2.2+
union
{
struct
{
UCHAR UserEnabled : 1;
UCHAR WatchdogReset : 2; // SMBIOS_SYSTEM_RESET_WATCHDOG_*
UCHAR WatchdogAction : 2; // SMBIOS_SYSTEM_RESET_WATCHDOG_*
UCHAR WatchdogExists : 1;
UCHAR Reserved : 2;
};
UCHAR Value;
} Capabilities;
USHORT ResetCount;
USHORT ResetLimit;
USHORT TimerInterval;
USHORT Timeout;
} SMBIOS_SYSTEM_RESET_INFORMATION, *PSMBIOS_SYSTEM_RESET_INFORMATION;
View code on GitHub
No description available.