#ifndef _NTPSAPI_H
typedef enum _THREAD_STATE_CHANGE_TYPE
{
ThreadStateChangeSuspend,
ThreadStateChangeResume,
ThreadStateChangeMax,
} THREAD_STATE_CHANGE_TYPE, *PTHREAD_STATE_CHANGE_TYPE;
View code on GitHub
This 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 |