Differences
This shows you the differences between two versions of the page.
en:ibm:prcp:mou:initreal [2016/02/04 05:24] – created valerius | en:ibm:prcp:mou:initreal [2016/09/15 04:10] (current) – valerius | ||
---|---|---|---|
Line 2: | Line 2: | ||
- | **Bindings**: | + | **Bindings**: |
This call initializes mouse pointer draw support for DOS mode. | This call initializes mouse pointer draw support for DOS mode. | ||
Line 36: | Line 36: | ||
The error code ERROR_MOUSE_SMG_ONLY is valid from shell process only. | The error code ERROR_MOUSE_SMG_ONLY is valid from shell process only. | ||
+ | |||
+ | === C bindings === | ||
+ | |||
+ | <code c> | ||
+ | #define INCL_MOU | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | PSZ DriverName; | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | EXTRN MouInitReal: | ||
+ | INCL_MOU | ||
+ | |||
+ | PUSH@ ASCIIZ | ||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | </ | ||