Differences
This shows you the differences between two versions of the page.
en:ibm:prcp:mou:drawptr [2016/02/04 02:17] – external edit 127.0.0.1 | en:ibm:prcp:mou:drawptr [2016/09/15 03:35] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== MouDrawPtr ==== | ==== MouDrawPtr ==== | ||
- | **Bindings**: | + | **Bindings**: |
This call allows a process to notify the mouse device driver that an area previously restricted to the pointer image is now available to the mouse device driver. | This call allows a process to notify the mouse device driver that an area previously restricted to the pointer image is now available to the mouse device driver. | ||
Line 24: | Line 24: | ||
This call is required to begin session pointer image drawing. Immediately after [[open|MouOpen]] is issued, the collision area is defined as the size of the display. A [[drawptr|MouDrawPtr]] is issued to begin pointer drawing after the [[open|MouOpen]]. | This call is required to begin session pointer image drawing. Immediately after [[open|MouOpen]] is issued, the collision area is defined as the size of the display. A [[drawptr|MouDrawPtr]] is issued to begin pointer drawing after the [[open|MouOpen]]. | ||
+ | |||
+ | === C bindings === | ||
+ | |||
+ | <code c> | ||
+ | #define INCL_MOU | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | HMOU | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | EXTRN MouDrawPtr: | ||
+ | INCL_MOU | ||
+ | |||
+ | PUSH | ||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | </ | ||