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 (Structures)
.
C# Definition:
[StructLayout(LayoutKind.Explicit)]
struct INPUT {
[FieldOffset(0)] public int type;
[FieldOffset(4)] public MOUSEINPUT mi;
[FieldOffset(4)] public KEYBDINPUT ki;
[FieldOffset(4)] public HARDWAREINPUT hi;
}
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.