NtResumeProcess (ntdll)
Last changed: anonymous

.
Summary
Resumes a suspended process. Pass the process handle from "OpenProcess"

C# Signature:

[DllImport("ntdll.dll", SetLastError = true)]
public static extern IntPtr NtResumeProcess(IntPtr ProcessHandle);

VB Signature:

  <DllImport("ntdll.dll", SetLastError:=True)> _
    Public Shared Function NtResumeProcess(ByVal ProcessHandle As IntPtr) As IntPtr
    End Function

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation