Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
en:ibm:prcp:mou:dereg [2016/02/04 02:00] – external edit 127.0.0.1 | en:ibm:prcp:mou:dereg [2016/09/15 03:31] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== MouDeRegister ==== | ==== MouDeRegister ==== | ||
- | **Bindings**: | + | **Bindings**: |
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: |
- | * 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: |
- | * 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: |
- | * After the owning process has released the subsystem with a MouDeRegister, | + | * After the owning process has released the subsystem with a [[en: |
+ | |||
+ | === C bindings === | ||
+ | |||
+ | <code c> | ||
+ | #define INCL_MOU | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | EXTRN MouDeRegister: | ||
+ | INCL_MOU | ||
+ | |||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | </ | ||