en:ibm:prcp:mou:dereg

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:dereg [2016/02/04 02:43] valeriusen:ibm:prcp:mou:dereg [2016/09/15 03:31] (current) valerius
Line 1: Line 1:
 ==== MouDeRegister ==== ==== MouDeRegister ====
  
-**Bindings**: C, MASM +**Bindings**: [[dereg#bindings|C]][[dereg#MASM bindings|MASM]]
  
 This call deregisters a mouse subsystem previously registered within a session.  This call deregisters a mouse subsystem previously registered within a session. 
Line 25: Line 25:
  
   * After the owning process has released the subsystem with a [[en:ibm:prcp:mou:dereg|MouDeRegister]], any other process in the session may issue a [[en:ibm:prcp:mou:register|MouRegister]] and therefore modify the mouse support for the entire session.    * After the owning process has released the subsystem with a [[en:ibm:prcp:mou:dereg|MouDeRegister]], any other process in the session may issue a [[en:ibm:prcp:mou:register|MouRegister]] and therefore modify the mouse support for the entire session. 
 +
 +=== C bindings ===
 +
 +<code c>
 +#define INCL_MOU
 +
 +USHORT  rc = MouDeRegister(VOID);
 +
 +USHORT           rc;            /* return code */
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code asm>
 +EXTRN  MouDeRegister:FAR
 +INCL_MOU            EQU 1
 +
 +CALL   MouDeRegister
 +
 +Returns WORD
 +</code>