OpenProcess (user32)
Last changed: -74.212.48.23

.
Summary
TODO - a short description

C# Signature:

[DllImport("kernel32.dll", SetLastError=true)]
static extern IntPtr OpenProcess(UInt32 dwDesiredAccess, Int32 bInheritHandle, UInt32 dwProcessId);

VB Signature:

Declare Function OpenProcess Lib "kernel32.dll" (ByVal dwDesiredAccess As Uinteger, ByVal bInheritHandle As Integer, ByVal dwProcessId As UInteger) As IntPtr

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

Pass the returned handle to CloseHandle after you are done with it.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation
OpenProcess on MSDN