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.
RAS_STATS (Structures)
.
C# Signature:
[StructLayout(LayoutKind.Sequential, CharSet=CharSet.Auto)]
struct RAS_STATS
{
public int dwSize;
public int dwBytesXmited;
public int dwBytesRcved;
public int dwFramesXmited;
public int dwFramesRcved;
public int dwCrcErr;
public int dwTimeoutErr;
public int dwAlignmentErr;
public int dwHardwareOverrunErr;
public int dwFramingErr;
public int dwBufferOverrunErr;
public int dwCompressionRatioIn;
public int dwCompressionRatioOut;
public int dwBps;
public int dwConnectionDuration;
}
VB Signature:
Private Structure RAS_STATS
Public dwAlignmentErr As Integer
Public dwBps As Integer
Public dwBufferOverrunErr As Integer
Public dwBytesRcved As Integer
Public dwBytesXmited As Integer
Public dwCompressionRatioIn As Integer
Public dwCompressionRatioOut As Integer
Public dwConnectionDuration As Integer
Public dwCrcErr As Integer
Public dwFramesRcved As Integer
Public dwFramesXmited As Integer
Public dwFramingErr As Integer
Public dwHardwareOverrunErr As Integer
Public dwSize As Integer
Public dwTimeoutErr As Integer
End Struct