HARDWAREINPUT

[This is preliminary documentation and subject to change.]

Contains information about a simulated message generated by an input device.

typedef struct tagHARDWAREINPUT {
    DWORD   uMsg;
    WORD    ParamL;
    WORD    ParamH;
    DWORD   dwExtraInfo;
} HARDWAREINPUT, FAR* LPHARDWAREINPUT;
 

Members

uMsg
Value specifying the message associated with the hardware input event.
ParamL
Low-order word of the lParam parameter for the message.
ParamH
High-order word of the lParam parameter for the message.
dwExtraInfo
A 32-bit value to be associated with the event. An application calls the GetMessageExtraInfo Win32 function to obtain this extra information.

Remarks

This structure is contained by the INPUT structure and used with the SendInput function.

See Also

Simulating Input