@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm 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 (int)Marshal.SizeOf(typeof(PROCESS_BASIC_INFORMATION)); } } } !!!!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 6 * IntPtr.Size End Get End Property End Structure !!!!User-Defined Field Types: None. !!!!Notes: None. Documentation: PROCESS_BASIC_INFORMATION@msdn on MSDN
Edit Structures.PROCES...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.