en:ibm:prcp:mou:flushque

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

en:ibm:prcp:mou:flushque [2016/02/04 02:20] – external edit 127.0.0.1en:ibm:prcp:mou:flushque [2016/09/15 03:38] (current) valerius
Line 1: Line 1:
 ==== MouFlushQue ==== ==== MouFlushQue ====
  
-**Bindings**: C, MASM +**Bindings**: [[flushque#bindings|C]][[flushque#MASM bindings|MASM]]
  
 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  rc = MouFlushQue(DeviceHandle);
 +
 +HMOU             DeviceHandle;  /* Mouse device handle */
 +
 +USHORT           rc;            /* return code */
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code asm>
 +EXTRN  MouFlushQue:FAR
 +INCL_MOU            EQU 1
 +
 +PUSH   WORD    DeviceHandle  ;Mouse device handle
 +CALL   MouFlushQue
 +
 +Returns WORD
 +</code>