Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
en:ibm:prcp:mou:setdevstatus [2016/02/04 07:09] – 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 39: | Line 39: | ||
* 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. | * 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 | ||
+ | |||
+ | Return WORD | ||
+ | </ | ||