Differences
This shows you the differences between two versions of the page.
en:ibm:prcp:mou:getptrpos [2016/02/04 05:08] – created valerius | en:ibm:prcp:mou:getptrpos [2016/09/15 03:59] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== MouGetPtrPos ==== | ==== MouGetPtrPos ==== | ||
- | **Bindings**: | + | **Bindings**: |
This call queries the mouse driver to determine the current row and column coordinate position of the mouse pointer. | This call queries the mouse driver to determine the current row and column coordinate position of the mouse pointer. | ||
Line 31: | Line 31: | ||
For a text window (VIO) application, | For a text window (VIO) application, | ||
+ | |||
+ | === C bindings === | ||
+ | |||
+ | <code c> | ||
+ | typedef struct _PTRLOC { /* moupl */ | ||
+ | USHORT row; /* pointer row coordinate screen | ||
+ | | ||
+ | USHORT col; /* pointer column coordinate screen | ||
+ | | ||
+ | } PTRLOC; | ||
+ | |||
+ | #define INCL_MOU | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | PPTRLOC | ||
+ | HMOU | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | PTRLOC | ||
+ | moupl_row | ||
+ | moupl_col | ||
+ | PTRLOC | ||
+ | |||
+ | EXTRN MouGetPtrPos: | ||
+ | INCL_MOU | ||
+ | |||
+ | PUSH@ OTHER | ||
+ | PUSH | ||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | </ | ||