THREAD_STATE_CHANGE_TYPE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTPSAPI_H

typedef enum _THREAD_STATE_CHANGE_TYPE
{
    ThreadStateChangeSuspend,
    ThreadStateChangeResume,
    ThreadStateChangeMax,
} THREAD_STATE_CHANGE_TYPE, *PTHREAD_STATE_CHANGE_TYPE;

#endif

View code on GitHub

This enumeration defines types of operations that can be performed on thread state objects.

Applicable to

Members

ThreadStateChangeSuspend (0)

Suspends the associated thread.

Change
Extra buffer void (zero size)
Required access THREAD_SUSPEND_RESUME

See also

ThreadStateChangeResume (1)

Resumes the associated thread.

Change
Extra buffer void (zero size)
Required access THREAD_SUSPEND_RESUME

See also