#ifndef _NTPSAPI_H
/**
* The PROCESS_STACK_ALLOCATION_INFORMATION structure contains information about the stack allocation for a process.
*/
typedef struct _PROCESS_STACK_ALLOCATION_INFORMATION
{
SIZE_T ReserveSize; // The size of the stack to be reserved.
SIZE_T ZeroBits; // The number of zero bits in the stack base address.
PVOID StackBase; // Pointer to the base of the stack.
} PROCESS_STACK_ALLOCATION_INFORMATION, *PPROCESS_STACK_ALLOCATION_INFORMATION;
View code on GitHub
No description available.