Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Structures, prefix the name with the module name and a period.
PROCESS_BASIC_INFORMATION (Structures)
.
C# Definition:
private struct PROCESS_BASIC_INFORMATION
{
public NtStatus ExitStatus;
public uint ExitStatus;
public IntPtr PebBaseAddress;
public UIntPtr AffinityMask;
public int BasePriority;
public UIntPtr UniqueProcessId;
public UIntPtr InheritedFromUniqueProcessId;
}
VB.NET Definition:
Private Structure PROCESS_BASIC_INFORMATION
Public ExitStatus As NtStatus
Public ExitStatus As UInteger
Public PebBaseAddress As IntPtr
Public AffinityMask As UIntPtr
Public BasePriority As Integer
Public UniqueProcessId As UIntPtr
Public InheritedFromUniqueProcessId As UIntPtr
End Structure