en:ibm:prcp:mou:getdevstatus

Differences

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

Link to this comparison view

en:ibm:prcp:mou:getdevstatus [2016/02/04 04:48] – created valeriusen:ibm:prcp:mou:getdevstatus [2016/09/15 03:41] (current) valerius
Line 1: Line 1:
 ==== MouGetDevStatus ==== ==== MouGetDevStatus ====
  
-**Bindings**: C, MASM +**Bindings**: [[getdevstatus#bindings|C]][[getdevstatus#MASM bindings|MASM]]
  
 This call returns status flags for the installed mouse device driver.  This call returns status flags for the installed mouse device driver. 
Line 33: Line 33:
 |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 = MouGetDevStatus(DeviceStatus, DeviceHandle);
 +
 +PUSHORT          DeviceStatus;  /* Current status flags */
 +HMOU             DeviceHandle;  /* Mouse device handle */
 +
 +USHORT           rc;            /* return code */
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code asm>
 +EXTRN  MouGetDevStatus:FAR
 +INCL_MOU            EQU 1
 +
 +PUSH@  WORD    DeviceStatus  ;Current status flags
 +PUSH   WORD    DeviceHandle  ;Mouse device handle
 +CALL   MouGetDevStatus
 +
 +Returns WORD
 +</code>