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

PROCESS_BASIC_INFORMATION (Structures)
 
.
Summary
TODO - a short description

C# Definition:

[StructLayout(LayoutKind.Sequential, Pack = 1)]
private struct PROCESS_BASIC_INFORMATION
{
  public IntPtr ExitStatus;
  public IntPtr PebBaseAddress;
  public IntPtr AffinityMask;
  public IntPtr BasePriority;
  public UIntPtr UniqueProcessId;
  public IntPtr InheritedFromUniqueProcessId;

  public int Size
  {
    get { return (1*sizeof(int) + 5*IntPtr.Size); }
  }
}

VB.NET Definition:

<StructLayout(LayoutKind.Sequential, Pack:=1)> _
Private Structure PROCESS_BASIC_INFORMATION
    Public ExitStatus As IntPtr
    Public PebBaseAddress As IntPtr
    Public AffinityMask As IntPtr
    Public BasePriority As IntPtr
    Public UniqueProcessId As IntPtr
    Public InheritedFromUniqueProcessId As IntPtr

    Public ReadOnly Property Size() As IntPtr
    Get
        Return 1 * 4 + 5 * IntPtr.Size
    End Get
    End Property
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • alternate definitions?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.

 
Access PInvoke.net directly from VS:
Terms of Use
Find References
Show Printable Version
Revisions