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.
<StructLayout(LayoutKind.Explicit)> _
Public Structure INPUT
<FieldOffset(0)> _
Public [type] As Integer
' arrange the next three fields as a union
<FieldOffset(4)> _
Public mi As MOUSEINPUT
<FieldOffset(4)> _
Public ki As KEYBDINPUT
<FieldOffset(4)> _
Public hi As HARDWAREINPUT
End Structure
The last 3 fields are a union, which is why they are all at the same memory offset.
TODO - a short description
1/3/2014 5:10:17 AM - -77.125.97.109
The [KEYBDINPUT] structure contains information about a simulated keyboard event. It's part of the [INPUT] structure, and is used for the SendInput function.
4/10/2012 6:38:31 PM - -77.125.97.109
TODO - a short description
4/10/2012 6:37:57 PM - -157.82.157.63
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
alternate definitions?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.