#ifndef _NTPSAPI_H
/**
* The PROCESS_TLS_INFORMATION structure contains information about the TLS operations for a process.
*/
typedef struct _PROCESS_TLS_INFORMATION
{
ULONG Flags; // Flags that provide additional information about the TLS operation.
ULONG OperationType; // The type of TLS operation to be performed.
ULONG ThreadDataCount; // The number of THREAD_TLS_INFORMATION structures in the ThreadData array.
ULONG TlsIndex; // The TLS index to be replaced.
ULONG PreviousCount; // The previous count of TLS data.
_Field_size_(ThreadDataCount) THREAD_TLS_INFORMATION ThreadData[1]; // Array of THREAD_TLS_INFORMATION structures.
} PROCESS_TLS_INFORMATION, *PPROCESS_TLS_INFORMATION;
View code on GitHub
No description available.