en:docs:fapi:mouflushque

Differences

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

Link to this comparison view

Next revision
Previous revision
en:docs:fapi:mouflushque [2021/10/07 13:54] – created prokusheven:docs:fapi:mouflushque [2021/11/04 13:05] (current) prokushev
Line 1: Line 1:
 +{{page>en:templates:fapiint}}
 +
 +====== MouFlushQue ======
 +
 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.
  
-==Syntax==+===== Syntax ===== 
 +<code c>
  MouFlushQue (DeviceHandle)  MouFlushQue (DeviceHandle)
 +</code>
  
-==Parameters== +===== Parameters =====
-;DeviceHandle (HMOU) - input : Mouse device handle from a previous MouOpen.+
  
-==Return Code== +  * DeviceHandle (HMOU) - input Mouse device handle from a previous MouOpen.
-;rc (USHORT) - return:Return code descriptions are: +
-* 0  NO_ERROR +
-*385 ERROR_MOUSE_NO_DEVICE +
-*466 ERROR_MOU_DETACHED +
-*501 ERROR_MOUSE_NO_CONSOLE +
-*505 ERROR_MOU_EXTENDED_SG+
  
-==Bindings== +===== Return Code ===== 
-===C=== + 
-<PRE>+rc (USHORT) - return:Return code descriptions are: 
 + 
 +  * 0  NO_ERROR 
 +  *385 ERROR_MOUSE_NO_DEVICE 
 +  *466 ERROR_MOU_DETACHED 
 +  *501 ERROR_MOUSE_NO_CONSOLE 
 +  *505 ERROR_MOU_EXTENDED_SG 
 + 
 +===== Bindings ===== 
 + 
 +====C==== 
 +<code c>
 #define INCL_MOU #define INCL_MOU
  
Line 25: Line 35:
  
 USHORT  rc;            /* return code */ USHORT  rc;            /* return code */
-</PRE>+</code>
  
-===MASM=== +====MASM==== 
-<PRE>+<code asm>
 EXTRN  MouFlushQue:FAR EXTRN  MouFlushQue:FAR
 INCL_MOU            EQU 1 INCL_MOU            EQU 1
Line 36: Line 46:
  
 Returns WORD Returns WORD
-</PRE>+</code> 
 + 
 +{{page>en:templates:fapi}}
  
-[[Category:Mou]]