en:ibm:prcp:mou:dereg

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:dereg [2016/02/04 02:00] – external edit 127.0.0.1en: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 18: Line 18:
 **Remarks** **Remarks**
  
-Processes issuing [[dereg|MouDeRegister]] calls must conform to the following rules: +Processes issuing [[en:ibm:prcp:mou:dereg|MouDeRegister]] calls must conform to the following rules: 
  
-  * The process that issued the [[register|MouRegister]] must release the session (by a [[dereg|MouDeRegister]]) from the registered subsystem before another **PID** may issue [[register|MouRegister]]. +  * The process that issued the [[en:ibm:prcp:mou:register|MouRegister]] must release the session (by a [[en:ibm:prcp:mou:dereg|MouDeRegister]]) from the registered subsystem before another **PID** may issue [[en:ibm:prcp:mou:register|MouRegister]]. 
  
-  * The process that issued the [[register|MouRegister]] is the only process that may issue [[dereg|MouDeRegister]] against the currently registered subsystem. +  * The process that issued the [[en:ibm:prcp:mou:register|MouRegister]] is the only process that may issue [[en:ibm:prcp:mou:dereg|MouDeRegister]] against the currently registered subsystem. 
  
-  * After the owning process has released the subsystem with a MouDeRegister, any other process in the session may issue a [[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>