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.
CEOSVERSIONINFO (Structures)
.
C# Definition:
[StructLayout(LayoutKind.Sequential)]
public struct CEOSVERSIONINFO
{
public UInt32 dwOSVersionInfoSize;
public UInt32 dwMajorVersion;
public UInt32 dwMinorVersion;
public UInt32 dwBuildNumber;
public UInt32 dwPlatformId;
[MarshalAs(UnmanagedType.ByValTStr,SizeConst= 128)]
public string szCSDVersion;
}
VB Definition:
Imports System.Runtime.InteropServices
<StructLayout(LayoutKind.Sequential)> _
Public Structure CEOSVERSIONINFO
Public dwOSVersionInfoSize As UInt32
Public dwMajorVersion As UInt32
Public dwMinorVersion As UInt32
Public dwBuildNumber As UInt32
Public dwPlatformId As UInt32
<MarshalAs(UnmanagedType.ByValTStr, SizeConst:=128)> _
Public szCSDVersion As String
Structure CEOSVERSIONINFO
Public TODO
End Structure