@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: TODO - a short description !!!!C# Definition: private struct PROCESS_BASIC_INFORMATION { public NtStatus ExitStatus; public IntPtr PebBaseAddress; public UIntPtr AffinityMask; public int BasePriority; public UIntPtr UniqueProcessId; public UIntPtr InheritedFromUniqueProcessId; } !!!!C# Alternate Definition: [StructLayout(LayoutKind.Sequential)] internal struct PROCESS_BASIC_INFORMATION { public IntPtr ExitStatus; public IntPtr PebAddress; public IntPtr AffinityMask; public IntPtr BasePriority; public IntPtr UniquePID; public IntPtr InheritedFromUniqueProcessId; } !!!!C# Alt Alt Definition: [StructLayout(LayoutKind.Sequential)] internal struct PROCESS_BASIC_INFORMATION { public IntPtr Reserved1; public IntPtr PebAddress; public IntPtr Reserved2; public IntPtr Reserved3; public IntPtr UniquePid; public IntPtr MoreReserved; } !!!!VB.NET Definition: Private Structure PROCESS_BASIC_INFORMATION Public ExitStatus As NtStatus Public PebBaseAddress As IntPtr Public AffinityMask As UIntPtr Public BasePriority As Integer Public UniqueProcessId As UIntPtr Public InheritedFromUniqueProcessId As UIntPtr End Structure !!!!User-Defined Field Types: [NtStatus] !!!!Notes: https://github.com/dotnet/corefx/pull/31827#discussion_r211145659 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.