en:ibm:prcp:mou:setdevstatus

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
en:ibm:prcp:mou:setdevstatus [2016/02/04 07:09] 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 39: Line 39:
   * 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.      * 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
 +
 +Return WORD
 +</code>