MOUSE_EVENT_RECORD (Structures)
Last changed: -79.206.152.209

.
Summary
TODO - a short description

C# Definition:

    [StructLayout(LayoutKind.Sequential)]
    public struct MOUSE_EVENT_RECORD
    {    
        public COORD dwMousePosition;
        public uint dwButtonState;
        public uint dwControlKeyState;
        public uint dwEventFlags;
    };

VB Definition:

Structure MOUSE_EVENT_RECORD
   Public TODO
End Structure

User-Defined Field Types:

None.

Notes:

This one seems busted. I added it because there wasn't one, but when I try to capture this event, dwMousePosition.X is always 1 except when Y is 0, then X == 1 || X == 0

Documentation