en:ibm:prcp:mou:removeptr

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
en:ibm:prcp:mou:removeptr [2016/02/04 06:02] valeriusen:ibm:prcp:mou:removeptr [2016/09/15 04:22] (current) valerius
Line 1: Line 1:
 ==== MouRemovePtr ==== ==== MouRemovePtr ====
  
-**Bindings**: C, MASM +**Bindings**: [[removeptr#bindings|C]][[removeptr#MASM bindings|MASM]]
  
 This call allows a process to notify the mouse device driver that the area defined by the passed parameters is for the exclusive use of the application. This area is defined as the collision area and is not available to the mouse device driver when drawing pointer images.  This call allows a process to notify the mouse device driver that the area defined by the passed parameters is for the exclusive use of the application. This area is defined as the collision area and is not available to the mouse device driver when drawing pointer images. 
Line 42: Line 42:
  
 The [[en:ibm:prcp:mou:drawptr|MouDrawPtr]] command effectively cancels the [[en:ibm:prcp:mou:removeptr|MouRemovePtr]] command and allows the pointer to be drawn anywhere on the screen, until a new [[en:ibm:prcp:mou:removeptr|MouRemovePtr]] command is issued.  The [[en:ibm:prcp:mou:drawptr|MouDrawPtr]] command effectively cancels the [[en:ibm:prcp:mou:removeptr|MouRemovePtr]] command and allows the pointer to be drawn anywhere on the screen, until a new [[en:ibm:prcp:mou:removeptr|MouRemovePtr]] command is issued. 
 +
 +=== C bindings ===
 +
 +<code c>
 +typedef struct _NOPTRRECT {   /* mourt */
 +  USHORT row;                 /* upper left row coordinates */
 +  USHORT col;                 /* upper left column coordinates */
 +  USHORT cRow;
 +  USHORT cCol;
 +} NOPTRRECT;
 +
 +#define INCL_MOU
 +
 +USHORT  rc = MouRemovePtr(PtrArea, DeviceHandle);
 +
 +PNOPTRRECT       PtrArea;       /* Address of pointer data block */
 +HMOU             DeviceHandle;  /* Mouse device handle */
 +
 +USHORT           rc;            /* return code */
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code asm>
 +NOPTRRECT struc
 + mourt_row  dw  ? ;upper left row coordinates
 + mourt_col  dw  ? ;upper left column coordinates
 + mourt_cRow dw  ?
 + mourt_cCol dw  ?
 +NOPTRRECT ends
 +
 +EXTRN MouRemovePtr:FAR
 +INCL_MOU            EQU 1
 +
 +PUSH@  OTHER   PtrArea       ;Address of pointer data block
 +PUSH   WORD    DeviceHandle  ;Mouse device handle
 +CALL   MouRemovePtr
 +
 +Returns WORD
 +</code>