Differences
This shows you the differences between two versions of the page.
en:ibm:prcp:mou:getevmask [2016/02/04 04:53] – created valerius | en:ibm:prcp:mou:getevmask [2016/09/15 03:44] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== MouGetEventMask ==== | ==== MouGetEventMask ==== | ||
- | **Bindings**: | + | **Bindings**: |
This call returns the current value of the mouse event queue mask. | This call returns the current value of the mouse event queue mask. | ||
Line 37: | Line 37: | ||
Buttons are logically numbered from left to right. | Buttons are logically numbered from left to right. | ||
+ | |||
+ | === C bindings === | ||
+ | |||
+ | <code c> | ||
+ | #define INCL_MOU | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | PUSHORT | ||
+ | HMOU | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | EXTRN MouGetEventMask: | ||
+ | INCL_MOU | ||
+ | |||
+ | PUSH@ WORD EventMask | ||
+ | PUSH | ||
+ | CALL | ||
+ | |||
+ | Return WORD | ||
+ | </ | ||