en:ibm:prcp:mou:getnummickeys

Differences

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

Link to this comparison view

en:ibm:prcp:mou:getnummickeys [2016/02/04 05:00] – created valeriusen:ibm:prcp:mou:getnummickeys [2016/09/15 03:52] (current) valerius
Line 1: Line 1:
 ==== MouGetNumMickeys ==== ==== MouGetNumMickeys ====
  
-**Bindings**: C, MASM +**Bindings**: [[getnummickeys#bindings|C]][[getnummickeys#MASM bindings|MASM]]
  
 This call returns the number of mickeys in each centimeter for the installed mouse driver.  This call returns the number of mickeys in each centimeter for the installed mouse driver. 
Line 21: Line 21:
 |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 = MouGetNumMickeys(NumberOfMickeys, DeviceHandle);
 +
 +PUSHORT          NumberOfMickeys; /* Number mickeys/centimeter */
 +HMOU             DeviceHandle;    /* Mouse device handle */
 +
 +USHORT           rc;              /* return code */
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code asm>
 +EXTRN  MouGetNumMickeys:FAR
 +INCL_MOU            EQU 1
 +
 +PUSH@  WORD    NumberOfMickeys ;Number mickeys/centimeter
 +PUSH   WORD    DeviceHandle    ;Mouse device handle
 +CALL   MouGetNumMickeys
 +
 +Return WORD
 +</code>