Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
en:ibm:prcp:mou:removeptr [2016/02/04 06:02] – 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 42: | Line 42: | ||
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 | ||
+ | </ | ||