Differences
This shows you the differences between two versions of the page.
en:ibm:prcp:mou:flushque [2016/02/04 02:20] – external edit 127.0.0.1 | en:ibm:prcp:mou:flushque [2016/09/15 03:38] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== MouFlushQue ==== | ==== MouFlushQue ==== | ||
- | **Bindings**: | + | **Bindings**: |
This call directs the mouse driver to flush (empty) the mouse event queue and the monitor chain data for the session. | This call directs the mouse driver to flush (empty) the mouse event queue and the monitor chain data for the session. | ||
Line 18: | Line 18: | ||
|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 | ||
+ | |||
+ | HMOU | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | EXTRN MouFlushQue: | ||
+ | INCL_MOU | ||
+ | |||
+ | PUSH | ||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | </ | ||