#ifndef _NTPSAPI_H
/**
* The PROCESS_MEMORY_ALLOCATION_MODE union is used to specify the memory allocation mode for a process.
*/
typedef union _PROCESS_MEMORY_ALLOCATION_MODE
{
ULONG Flags;
struct
{
ULONG TopDown : 1; // Indicates whether memory allocation should be top-down.
ULONG Reserved : 31; // Reserved for future use.
};
} PROCESS_MEMORY_ALLOCATION_MODE, *PPROCESS_MEMORY_ALLOCATION_MODE;
View code on GitHub
No description available.