mirror of
https://github.com/reactos/wine.git
synced 2025-02-03 10:43:30 +00:00
ntdll: Add stub for NtSetInformationThread(ThreadHideFromDebugger).
This commit is contained in:
parent
f2432a8bc2
commit
be910d973a
@ -1227,6 +1227,10 @@ NTSTATUS WINAPI NtSetInformationThread( HANDLE handle, THREADINFOCLASS class,
|
||||
SERVER_END_REQ;
|
||||
}
|
||||
return status;
|
||||
case ThreadHideFromDebugger:
|
||||
/* pretend the call succeeded to satisfy some code protectors */
|
||||
return STATUS_SUCCESS;
|
||||
|
||||
case ThreadBasicInformation:
|
||||
case ThreadTimes:
|
||||
case ThreadPriority:
|
||||
|
@ -760,6 +760,7 @@ typedef enum _THREADINFOCLASS {
|
||||
ThreadPriorityBoost,
|
||||
ThreadSetTlsArrayAddress,
|
||||
ThreadIsIoPending,
|
||||
ThreadHideFromDebugger,
|
||||
MaxThreadInfoClass
|
||||
} THREADINFOCLASS;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user