MEMORY_PAGE_DIRTY_STATE_INFORMATION - NtDoc

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

// rev
// VmPageDirtyStateInformation
/**
 * The MEMORY_PAGE_DIRTY_STATE_INFORMATION structure resets the page dirty tracking state
 * for selected ranges of virtual memory including the page-dirty-state PTE information
 * required by the GetWriteWatch and ResetWriteWatch functions.
 */
typedef struct _MEMORY_PAGE_DIRTY_STATE_INFORMATION
{
    ULONG Flags; // Must be zero
} MEMORY_PAGE_DIRTY_STATE_INFORMATION, *PMEMORY_PAGE_DIRTY_STATE_INFORMATION;

#endif
#endif

View code on GitHub

NtDoc

No description available.