MEMORY_SHARED_COMMIT_INFORMATION - NtDoc

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

/**
 * The MEMORY_SHARED_COMMIT_INFORMATION structure contains the total commit size
 * for a region of memory that is shared between processes.
 */
typedef struct _MEMORY_SHARED_COMMIT_INFORMATION
{
    SIZE_T CommitSize;
} MEMORY_SHARED_COMMIT_INFORMATION, *PMEMORY_SHARED_COMMIT_INFORMATION;

#endif

View code on GitHub

NtDoc

No description available.