Differences
This shows you the differences between two versions of the page.
en:ibm:prcp:mou:getdevstatus [2016/02/04 04:48] – created valerius | en:ibm:prcp:mou:getdevstatus [2016/09/15 03:41] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== MouGetDevStatus ==== | ==== MouGetDevStatus ==== | ||
- | **Bindings**: | + | **Bindings**: |
This call returns status flags for the installed mouse device driver. | This call returns status flags for the installed mouse device driver. | ||
Line 33: | Line 33: | ||
|501 |ERROR_MOUSE_NO_CONSOLE | | |501 |ERROR_MOUSE_NO_CONSOLE | | ||
|505 |ERROR_MOU_EXTENDED_SG | | |505 |ERROR_MOU_EXTENDED_SG | | ||
+ | |||
+ | === C bindings === | ||
+ | |||
+ | <code c> | ||
+ | #define INCL_MOU | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | PUSHORT | ||
+ | HMOU | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | EXTRN MouGetDevStatus: | ||
+ | INCL_MOU | ||
+ | |||
+ | PUSH@ WORD DeviceStatus | ||
+ | PUSH | ||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | </ | ||