en:ibm:prcp:mou:setdevstatus

Differences

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

Link to this comparison view

Next revision
Previous revision
en:ibm:prcp:mou:setdevstatus [2016/02/04 07:08] – created valeriusen:ibm:prcp:mou:setdevstatus [2016/09/15 04:26] (current) valerius
Line 1: Line 1:
 ==== MouSetDevStatus ==== ==== MouSetDevStatus ====
  
-**Bindings**: C, MASM +**Bindings**: [[setdevstatus#bindings|C]][[setdevstatus#MASM bindings|MASM]]
  
 This call sets the mouse device driver status flags for the installed mouse device driver.  This call sets the mouse device driver status flags for the installed mouse device driver. 
Line 36: Line 36:
  
   * Return data in mickeys.    * Return data in mickeys. 
- 
     * Normally, mouse data is returned to the application with the absolute display mode coordinates of the pointer image position on the display screen. By setting this status flag, mouse data is returned in relative mickeys, a unit of mouse movement.      * Normally, mouse data is returned to the application with the absolute display mode coordinates of the pointer image position on the display screen. By setting this status flag, mouse data is returned in relative mickeys, a unit of mouse movement. 
- 
   * Don't call pointer draw device.    * Don't call pointer draw device. 
 +    * Normally, the pointer draw device driver is called for all drawing operations. By setting this status flag, the mouse device driver does not call the pointer draw device driver. The application must draw any required pointer image on the screen. 
 +
 +=== C bindings ===
 +
 +<code c>
 +#define INCL_MOU
 +
 +USHORT  rc = MouSetDevStatus(DeviceStatus, DeviceHandle);
 +
 +PUSHORT          DeviceStatus;  /* Status flags */
 +HMOU             DeviceHandle;  /* Mouse device handle */
 +
 +USHORT           rc;            /* return code */
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code asm>
 +EXTRN  MouSetDevStatus:FAR
 +INCL_MOU            EQU 1
 +
 +PUSH@  WORD    DeviceStatus  ;Status flags
 +PUSH   WORD    DeviceHandle  ;Mouse device handle
 +CALL   MouSetDevStatus
  
-  * Normally, the pointer draw device driver is called for all drawing operations. By setting this status flag, the mouse device driver does not call the pointer draw device driver. The application must draw any required pointer image on the screen. +Return WORD 
 +</code>