PERFINFO_SYSTEM_MEMORY_INFORMATION - NtDoc

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

typedef struct _PERFINFO_SYSTEM_MEMORY_INFORMATION
{
    ULONG_PTR PagedPoolCommitPageCount;
    ULONG_PTR NonPagedPoolPageCount;
    ULONG_PTR MdlPageCount;
    ULONG_PTR CommitPageCount;
} PERFINFO_SYSTEM_MEMORY_INFORMATION, *PPERFINFO_SYSTEM_MEMORY_INFORMATION;

#endif

View code on GitHub

No description available.