MEMORY_PREFETCH_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
/**
 * The MEMORY_PREFETCH_INFORMATION structure defines prefetch-control flags that
 * determine how prefetch operations are executed on the supplied address ranges.
 *
 * \remarks The behavior and success of prefetch operations depend on OS policy,
 * working set limits, privileges, and presence of backing storage.
 * \sa NtSetInformationVirtualMemory, VIRTUAL_MEMORY_INFORMATION_CLASS, VmPrefetchInformation
 */
typedef struct _MEMORY_PREFETCH_INFORMATION
{
    ULONG Flags;
} MEMORY_PREFETCH_INFORMATION, *PMEMORY_PREFETCH_INFORMATION;

#endif
#endif

View code on GitHub

NtDoc

No description available.