Differences
This shows you the differences between two versions of the page.
en:ibm:prcp:mou:setevtmask [2016/02/04 07:14] – created valerius | en:ibm:prcp:mou:setevtmask [2016/09/15 04:29] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== MouSetEventMask ==== | ==== MouSetEventMask ==== | ||
- | **Bindings**: | + | **Bindings**: |
This call assigns a new event mask to the current mouse device driver. | This call assigns a new event mask to the current mouse device driver. | ||
Line 40: | Line 40: | ||
Setting a bit in the event mask means that the associated event is reported on the mouse FIFO event queue. See [[en: | Setting a bit in the event mask means that the associated event is reported on the mouse FIFO event queue. See [[en: | ||
+ | |||
+ | === C bindings === | ||
+ | |||
+ | <code c> | ||
+ | #define INCL_MOU | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | PUSHORT | ||
+ | HMOU | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | EXTRN MouSetEventMask: | ||
+ | INCL_MOU | ||
+ | |||
+ | PUSH@ WORD EventMask | ||
+ | PUSH | ||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | </ | ||