SMBIOS_PHYSICAL_MEMORY_ARRAY_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_PHYSICAL_MEMORY_ARRAY_INFORMATION
{
    SMBIOS_HEADER Header;
    // 2.1+
    UCHAR Location;        // SMBIOS_PHYSICAL_MEMORY_ARRAY_LOCATION_*
    UCHAR Use;             // SMBIOS_PHYSICAL_MEMORY_ARRAY_USE_*
    UCHAR ErrorCorrection; // SMBIOS_PHYSICAL_MEMORY_ARRAY_ERROR_CORRECTION_*
    ULONG MaximumCapacity;
    USHORT ErrorInformationHandle;
    USHORT NumberOfMemoryDevices;
    // 2.7+
    ULONGLONG ExtendedMaximumCapacity;
} SMBIOS_PHYSICAL_MEMORY_ARRAY_INFORMATION, *PSMBIOS_PHYSICAL_MEMORY_ARRAY_INFORMATION;

#include <poppack.h>
#endif

View code on GitHub

No description available.