Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
en:ibm:prcp:mou:setdevstatus [2016/02/04 07:08] – created valerius | en:ibm:prcp:mou:setdevstatus [2016/09/15 04:26] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== MouSetDevStatus ==== | ==== MouSetDevStatus ==== | ||
- | **Bindings**: | + | **Bindings**: |
This call sets the mouse device driver status flags for the installed mouse device driver. | This call sets the mouse device driver status flags for the installed mouse device driver. | ||
Line 36: | Line 36: | ||
* Return data in mickeys. | * Return data in mickeys. | ||
- | |||
* Normally, mouse data is returned to the application with the absolute display mode coordinates of the pointer image position on the display screen. By setting this status flag, mouse data is returned in relative mickeys, a unit of mouse movement. | * Normally, mouse data is returned to the application with the absolute display mode coordinates of the pointer image position on the display screen. By setting this status flag, mouse data is returned in relative mickeys, a unit of mouse movement. | ||
- | |||
* Don't call pointer draw device. | * Don't call pointer draw device. | ||
+ | * Normally, the pointer draw device driver is called for all drawing operations. By setting this status flag, the mouse device driver does not call the pointer draw device driver. The application must draw any required pointer image on the screen. | ||
+ | |||
+ | === C bindings === | ||
+ | |||
+ | <code c> | ||
+ | #define INCL_MOU | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | PUSHORT | ||
+ | HMOU | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | EXTRN MouSetDevStatus: | ||
+ | INCL_MOU | ||
+ | |||
+ | PUSH@ WORD DeviceStatus | ||
+ | PUSH | ||
+ | CALL | ||
- | * Normally, the pointer draw device driver is called for all drawing operations. By setting this status flag, the mouse device driver does not call the pointer draw device driver. The application must draw any required pointer image on the screen. | + | Return WORD |
+ | </ | ||