PROCESS_STATE_CHANGE_TYPE - NtDoc

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

typedef enum _PROCESS_STATE_CHANGE_TYPE
{
    ProcessStateChangeSuspend,
    ProcessStateChangeResume,
    ProcessStateChangeMax,
} PROCESS_STATE_CHANGE_TYPE, *PPROCESS_STATE_CHANGE_TYPE;

#endif

View code on GitHub

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

Applicable to

Members

ProcessStateChangeSuspend (0)

Suspends (freezes) the associated process.

Change
Extra buffer void (zero size)
Required access PROCESS_SUSPEND_RESUME

See also

ProcessStateChangeResume (1)

Resumes (thaws) the associated process.

Change
Extra buffer void (zero size)
Required access PROCESS_SUSPEND_RESUME

See also