#ifndef _NTPSAPI_H
/**
* The THREAD_NAME_INFORMATION structure assigns a description to a thread.
*
* \remarks The handle must have THREAD_SET_LIMITED_INFORMATION access.
* \remarks https://learn.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-setthreaddescription
*/
typedef struct _THREAD_NAME_INFORMATION
{
// A Unicode string that specifies the description of the thread.
UNICODE_STRING ThreadName;
} THREAD_NAME_INFORMATION, *PTHREAD_NAME_INFORMATION;
View code on GitHub
No description available.