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.
INPUT_RECORD (Structures)
.
C# Definition:
[StructLayout(LayoutKind.Explicit)]
public struct INPUT_RECORD
{
[FieldOffset(0)]
public ushort EventType;
[FieldOffset(2)]
public KEY_EVENT_RECORD KeyEvent;
[FieldOffset(2)]
public MOUSE_EVENT_RECORD MouseEvent;
[FieldOffset(2)]
public WINDOW_BUFFER_SIZE_RECORD WindowBufferSizeEvent;
[FieldOffset(2)]
public MENU_EVENT_RECORD MenuEvent;
[FieldOffset(2)]
public FOCUS_EVENT_RECORD FocusEvent;
};
VB Definition:
<StructLayout(LayoutKind.Explicit)> _
Public Structure INPUT_RECORD
<FieldOffset(0)> Public EventType As System.UInt16
<FieldOffset(4)> Public KeyEvent As KEY_EVENT_RECORD
<FieldOffset(4)> Public MouseEvent As MOUSE_EVENT_RECORD
<FieldOffset(4)> Public WindowBufferSizeEvent As WINDOW_BUFFER_SIZE_RECORD
<FieldOffset(4)> Public MenuEvent As MENU_EVENT_RECORD
<FieldOffset(4)> Public FocusEvent As FOCUS_EVENT_RECORD
End Structure