#ifndef _NTPSAPI_H
#if (PHNT_VERSION >= PHNT_WINDOWS_11)
typedef enum _THREAD_STATE_CHANGE_TYPE
{
ThreadStateChangeSuspend,
ThreadStateChangeResume,
ThreadStateChangeMax,
} THREAD_STATE_CHANGE_TYPE, *PTHREAD_STATE_CHANGE_TYPE;
View code on GitHubThis enumeration defines types of operations that can be performed on thread state objects.
Suspends the associated thread.
| Change | |
|---|---|
| Extra buffer | void (zero size) |
| Required access | THREAD_SUSPEND_RESUME |
Resumes the associated thread.
| Change | |
|---|---|
| Extra buffer | void (zero size) |
| Required access | THREAD_SUSPEND_RESUME |