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.
KBDLLHOOKSTRUCT (Structures)
.
C# Definition:
[StructLayout(LayoutKind.Sequential)]
public class KBDLLHOOKSTRUCT
{
public UInt32 vkCode;
public UInt32 scanCode;
public UInt32 flags;
public UInt32 time;
public IntPtr dwExtraInfo;
}
VB Definition:
<StructLayout(LayoutKind.Sequential)> _
Public Structure KBDLLHOOKSTRUCT
public vkCode As UInt32
public scanCode As UInt32
public flags As UInt32
public time As UInt32
public dwExtraInfo As IntPtr
End Structure
Notes:
Added by Senthamil.
Changed to class to get the correct marshalling in SetWindowsHookEx