NtDllNtResumeProcess Method

Resumes a suspended process.

To suspend a process, call NtSuspendProcess(IntPtr) function.

Definition

Namespace: DevCase.Win32.NativeMethods
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("NtDll.dll", SetLastError = true)]
public static NTStatus NtResumeProcess(
	IntPtr processHandle
)

Parameters

processHandle  IntPtr
A handle to the process to resume.

Return Value

NTStatus
Returns SUCCESS on success.

Remarks

See Also