SMBIOS_MEMORY_DEVICE_MAPPED_ADDRESS_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_MEMORY_DEVICE_MAPPED_ADDRESS_INFORMATION
{
    SMBIOS_HEADER Header;
    // 2.1+
    ULONG StartingAddress;
    ULONG EndingAddress;
    USHORT DeviceHandle;
    USHORT ArrayMappedAddressHandle;
    UCHAR PartitionRowPosition;
    UCHAR InterleavePosition;
    UCHAR InterleavedDataDepth;
    // 2.7+
    ULONGLONG ExtendedStartingAddress;
    ULONGLONG ExtendedEndingAddress;
} SMBIOS_MEMORY_DEVICE_MAPPED_ADDRESS_INFORMATION, *PSMBIOS_MEMORY_DEVICE_MAPPED_ADDRESS_INFORMATION;

#include <poppack.h>
#endif

View code on GitHub

No description available.