en:ibm:prcp:mou:open

Differences

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

Link to this comparison view

en:ibm:prcp:mou:open [2016/02/04 02:30] – external edit 127.0.0.1en:ibm:prcp:mou:open [2016/09/15 04:13] (current) valerius
Line 1: Line 1:
 ==== MouOpen ==== ==== MouOpen ====
  
-**Bindings**: C, MASM +**Bindings**: [[open#bindings|C]][[open#MASM bindings|MASM]]
  
 This call opens the mouse device for the current session.  This call opens the mouse device for the current session. 
Line 40: Line 40:
   * Pointer shape set to the default for the pointer device driver currently registered in the session. (See [[setptrshape|MouSetPtrShape]].)    * Pointer shape set to the default for the pointer device driver currently registered in the session. (See [[setptrshape|MouSetPtrShape]].) 
   * Collision area equal to full screen. (See [[drawptr|MouDrawPtr]] and [[removeptr|MouRemovePtr]].)    * Collision area equal to full screen. (See [[drawptr|MouDrawPtr]] and [[removeptr|MouRemovePtr]].) 
 +
 +=== C bindings ===
 +
 +<code c>
 +#define INCL_MOU
 +
 +USHORT  rc = MouOpen(DriverName, DeviceHandle);
 +
 +PSZ              DriverName;    /* Pointer draw driver name */
 +PHMOU            DeviceHandle;  /* Mouse device handle */
 +
 +USHORT           rc;            /* return code */
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code asm>
 +EXTRN  MouOpen:FAR
 +INCL_MOU            EQU 1
 +
 +PUSH@  ASCIIZ  DriverName    ;Pointer draw driver name
 +PUSH@  WORD    DeviceHandle  ;Mouse device handle
 +CALL   MouOpen
 +
 +Returns WORD
 +</code>