PROCESS_JOB_MEMORY_INFO - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTPSAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)
// begin_private

/**
 * The PROCESS_JOB_MEMORY_INFO structure contains Represents app memory usage at a single point in time.
 *
 * \remarks https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/ns-processthreadsapi-app_memory_information
 */
typedef struct _PROCESS_JOB_MEMORY_INFO
{
    ULONGLONG SharedCommitUsage;        // The current shared commit usage, in bytes.
    ULONGLONG PrivateCommitUsage;       // The current private commit usage, in bytes.
    ULONGLONG PeakPrivateCommitUsage;   // The peak private commit usage, in bytes.
    ULONGLONG PrivateCommitLimit;       // The private commit limit, in bytes.
    ULONGLONG TotalCommitLimit;         // The total commit limit, in bytes.
} PROCESS_JOB_MEMORY_INFO, *PPROCESS_JOB_MEMORY_INFO;

// end_private
#endif
#endif

View code on GitHub

No description available.