Desktop Functions: Smart Device Functions:
|
Search Results for "Process32First" in [All]kernel32
static extern bool Process32First([In]IntPtr hSnapshot, ref PROCESSENTRY32 lppe);
if (Process32First(handleToSnapshot, ref procEntry))
static extern bool Process32First(IntPtr hSnapshot, ref PROCESSENTRY32 lppe);
Private Shared Function Process32First(ByVal hSnapshot As IntPtr, ByRef lppe As PROCESSENTRY32) As Boolean Possibly you need to use this definition if Process32First fails with error code 87 (invalid argument) |