Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "PROCESSENTRY32" in [All]

kernel32

.

    private struct PROCESSENTRY32

.

    static extern bool Process32First([In]IntPtr hSnapshot, ref PROCESSENTRY32 lppe);

.

    static extern bool Process32Next([In]IntPtr hSnapshot, ref PROCESSENTRY32 lppe);

.

        PROCESSENTRY32 procEntry = new PROCESSENTRY32();

.

        procEntry.dwSize = (UInt32)Marshal.SizeOf(typeof(PROCESSENTRY32));

.

PROCESSENTRY32, Process32First, Process32Next

.

static extern bool Process32First(IntPtr hSnapshot, ref PROCESSENTRY32 lppe);

.

Private Shared Function Process32First(ByVal hSnapshot As IntPtr, ByRef lppe As PROCESSENTRY32) As Boolean

.

PROCESSENTRY32

.

static extern bool Process32Next(IntPtr hSnapshot, ref PROCESSENTRY32 lppe);

.

Private Shared Function Process32Next(ByVal hSnapshot As IntPtr, ByRef lppe As PROCESSENTRY32) As Boolean

.

PROCESSENTRY32

.

public struct PROCESSENTRY32

.

Public Structure PROCESSENTRY32

.
Documentation
[PROCESSENTRY32] on MSDN
.

I found a different PROCESSENTRY32 structure I needed to use on Windows Mobile (6.x)

.

    public struct PROCESSENTRY32


 
Access PInvoke.net directly from VS: