Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
en:ibm:prcp:mou:register [2016/02/04 04:06] – valerius | en:ibm:prcp:mou:register [2016/09/15 04:19] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== MouRegister ==== | ==== MouRegister ==== | ||
- | **Bindings**: | + | **Bindings**: |
This call registers a mouse subsystem within a session. | This call registers a mouse subsystem within a session. | ||
Line 111: | Line 111: | ||
A registered mouse sybsystem must leave the stack, on exit, in the exact state it was received. | A registered mouse sybsystem must leave the stack, on exit, in the exact state it was received. | ||
+ | |||
+ | === C bindings === | ||
+ | |||
+ | <code c> | ||
+ | #define INCL_MOU | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | PSZ ModuleName; | ||
+ | PSZ EntryName; | ||
+ | ULONG Mask; /* Function Mask */ | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | EXTRN | ||
+ | INCL_MOU | ||
+ | |||
+ | PUSH@ ASCIIZ | ||
+ | PUSH@ ASCIIZ | ||
+ | PUSH | ||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | </ | ||