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.
ICMP_ECHO_REPLY (Structures)
.
C# Definition:
[StructLayout(LayoutKind.Sequential)]
public struct ICMP_ECHO_REPLY
{
public Int32 Address;
public Int32 Status;
public Int32 RoundTripTime;
public Int16 DataSize;
public Int16 Reserved;
public IntPtr Data;
public IP_OPTION_INFORMATION Options;
}
VB Definition:
<StructLayout(LayoutKind.Sequential)>
Public Structure ICMP_ECHO_REPLY
Public Address As Int32
Public Status As Int32
Public RoundTripTime As Int32
Public DataSize As Int16
Public Reserved As Int16
Public Data As IntPtr
Public Options As IP_OPTION_INFORMATION
End Structure