Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
en:ibm:prcp:mou:removeptr [2016/02/04 06:01] – created valerius | en:ibm:prcp:mou:removeptr [2016/09/15 04:22] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== MouRemovePtr ==== | ==== MouRemovePtr ==== | ||
- | **Bindings**: | + | **Bindings**: |
This call allows a process to notify the mouse device driver that the area defined by the passed parameters is for the exclusive use of the application. This area is defined as the collision area and is not available to the mouse device driver when drawing pointer images. | This call allows a process to notify the mouse device driver that the area defined by the passed parameters is for the exclusive use of the application. This area is defined as the collision area and is not available to the mouse device driver when drawing pointer images. | ||
Line 39: | Line 39: | ||
[[en: | [[en: | ||
- | If the logical pointer position is outside of the collision area specified by the latest [[en: | + | If the logical pointer position is outside of the collision area specified by the latest [[en: |
The [[en: | The [[en: | ||
+ | |||
+ | === C bindings === | ||
+ | |||
+ | <code c> | ||
+ | typedef struct _NOPTRRECT { /* mourt */ | ||
+ | USHORT row; /* upper left row coordinates */ | ||
+ | USHORT col; /* upper left column coordinates */ | ||
+ | USHORT cRow; | ||
+ | USHORT cCol; | ||
+ | } NOPTRRECT; | ||
+ | |||
+ | #define INCL_MOU | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | PNOPTRRECT | ||
+ | HMOU | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | NOPTRRECT struc | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | NOPTRRECT ends | ||
+ | |||
+ | EXTRN MouRemovePtr: | ||
+ | INCL_MOU | ||
+ | |||
+ | PUSH@ OTHER | ||
+ | PUSH | ||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | </ | ||