#ifndef _NTPSAPI_H
//
// User processes and threads
//
#if (PHNT_MODE != PHNT_MODE_KERNEL)
/**
* The PROC_THREAD_ATTRIBUTE_LIST structure contains the list of attributes for process and thread creation.
*/
typedef struct _PROC_THREAD_ATTRIBUTE_LIST
{
ULONG PresentFlags; // A bitmask of flags that indicate the attributes for process and thread creation.
ULONG AttributeCount; // The number of attributes in the list.
ULONG LastAttribute; // The index of the last attribute in the list.
ULONG SpareUlong0; // Reserved for future use.
PPROC_THREAD_ATTRIBUTE ExtendedFlagsAttribute; // A pointer to the extended flags attribute.
_Field_size_(AttributeCount) PROC_THREAD_ATTRIBUTE Attributes[1]; // An array of attributes.
} PROC_THREAD_ATTRIBUTE_LIST, *PPROC_THREAD_ATTRIBUTE_LIST;
View code on GitHub
No description available.