SYSTEM_PHYSICAL_MEMORY_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTEXAPI_H

/**
 * The SYSTEM_PHYSICAL_MEMORY_INFORMATION structure retrieves the physical memory layout of the system.
 * \remarks The addresses are physical, not virtual.
 */
typedef struct _SYSTEM_PHYSICAL_MEMORY_INFORMATION
{
    ULONGLONG TotalPhysicalBytes;           // Total amount of physical RAM present, in bytes.
    ULONGLONG LowestPhysicalAddress;        // Lowest accessible physical address (byte address).
    ULONGLONG HighestPhysicalAddress;       // Highest accessible physical address (byte address, inclusive).
} SYSTEM_PHYSICAL_MEMORY_INFORMATION, *PSYSTEM_PHYSICAL_MEMORY_INFORMATION;

#endif

View code on GitHub

NtDoc

No description available.