GET_MOUSEORKEY_LPARAM macro
Retrieves the input device type from the specified LPARAM value.
c++
WORD GET_MOUSEORKEY_LPARAM(
LPARAM lParam
);
- lParam
The value to be converted.
The return value is the bit of the high-order word representing the input device type. It can be one of the following values.
Return code/value | Description |
---|---|
FAPPCOMMAND_KEY 0 | User pressed a key. |
FAPPCOMMAND_MOUSE 0x8000 | User clicked a mouse button. |
FAPPCOMMAND_OEM 0x1000 | An unidentified hardware source generated the event. It could be a mouse or a keyboard event. |
This macro is identical to the GET_DEVICE_LPARAM macro.
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
Minimum supported server |
Windows 2000 Server [desktop apps only] |
Header |
Winuser.h (include Windows.h) |
Reference
Conceptual