mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
ntdll: Add a Wine-specific THREADINFOCLASS to set just the native thread name.
This commit is contained in:
parent
b40ddf4237
commit
d3416d9081
1 changed files with 4 additions and 1 deletions
|
@ -1894,7 +1894,10 @@ typedef enum _THREADINFOCLASS {
|
|||
ThreadManageWritesToExecutableMemory,
|
||||
ThreadPowerThrottlingState,
|
||||
ThreadWorkloadClass,
|
||||
MaxThreadInfoClass
|
||||
MaxThreadInfoClass,
|
||||
#ifdef __WINESRC__
|
||||
ThreadWineNativeThreadName = 1000,
|
||||
#endif
|
||||
} THREADINFOCLASS;
|
||||
|
||||
typedef struct _THREAD_BASIC_INFORMATION
|
||||
|
|
Loading…
Reference in a new issue