#ifndef _SMBIOS_H
#include <pshpack1.h>
typedef struct _SMBIOS_MEMORY_MODULE_INFORMATION
{
SMBIOS_HEADER Header;
UCHAR SocketDesignation; // string
UCHAR BankConnections;
UCHAR CurrentSpeed;
USHORT MemoryType; // SMBIOS_MEMORY_MODULE_TYPE_*
SMBIOS_MEMORY_MODULE_SIZE InstalledSize;
SMBIOS_MEMORY_MODULE_SIZE EnabledSize;
union
{
struct
{
UCHAR UncorrectableErrors : 1;
UCHAR CorrectableErrors : 1;
UCHAR SeeEventLog : 1;
UCHAR Reserved : 5;
};
UCHAR Value;
} ErrorStatus;
} SMBIOS_MEMORY_MODULE_INFORMATION, *PSMBIOS_MEMORY_MODULE_INFORMATION;
View code on GitHub
No description available.