Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
en:docs:fapi:mouinitreal [2021/10/07 13:54] – created prokushev | en:docs:fapi:mouinitreal [2021/11/04 13:05] (current) – prokushev | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | {{page> | ||
+ | |||
+ | ====== MouInitReal ====== | ||
+ | |||
This call initializes mouse pointer draw support for DOS mode. | This call initializes mouse pointer draw support for DOS mode. | ||
- | ==Syntax== | + | ===== Syntax ===== |
+ | <code c> | ||
| | ||
+ | </ | ||
- | ==Parameters== | + | ===== Parameters ===== |
- | ;DriverName (PSZ) - input : Address of the name of the Pointer Draw Device Driver used as the pointer-image drawing routine for the DOS mode session. | + | |
- | :The name of the device driver must be included in the CONFIG.SYS file at system start-up time. | + | |
- | :If the selector portion of the far address is zero and the offset portion is non-zero, the offset portion identifies the power-up display configuration. | + | |
- | ==Return Code== | + | * DriverName (PSZ) - input : Address of the name of the Pointer Draw Device Driver used as the pointer-image drawing routine for the DOS mode session. |
- | ;rc (USHORT) - return: | + | |
- | * 0 NO_ERROR | + | The name of the device driver must be included in the CONFIG.SYS file at system start-up time. |
- | * 385 ERROR_MOUSE_NO_DEVICE | + | |
- | * 466 ERROR_MOU_DETACHED | + | If the selector portion of the far address is zero and the offset portion is non-zero, the offset portion identifies the power-up display configuration. |
- | * 412 ERROR_MOUSE_SMG_ONLY | + | |
- | * 501 ERROR_MOUSE_NO_CONSOLE | + | ===== Return Code ===== |
- | * 505 ERROR_MOU_EXTENDED_SG | + | |
+ | rc (USHORT) - return: | ||
+ | |||
+ | | ||
+ | * 385 ERROR_MOUSE_NO_DEVICE | ||
+ | * 466 ERROR_MOU_DETACHED | ||
+ | * 412 ERROR_MOUSE_SMG_ONLY | ||
+ | * 501 ERROR_MOUSE_NO_CONSOLE | ||
+ | * 505 ERROR_MOU_EXTENDED_SG | ||
+ | |||
+ | ===== Remarks ===== | ||
- | ==Remarks== | ||
MouInitReal is issued by the Base Video Subsystem at system initialization time. | MouInitReal is issued by the Base Video Subsystem at system initialization time. | ||
Line 29: | Line 41: | ||
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. | ||
- | ==Bindings== | + | ===== Bindings |
- | ===C=== | + | |
- | <PRE> | + | ====C==== |
+ | <code c> | ||
#define INCL_MOU | #define INCL_MOU | ||
Line 38: | Line 51: | ||
PSZ | PSZ | ||
USHORT | USHORT | ||
- | </PRE> | + | </code> |
- | ===MASM=== | + | ====MASM==== |
- | <PRE> | + | <code asm> |
EXTRN MouInitReal: | EXTRN MouInitReal: | ||
INCL_MOU | INCL_MOU | ||
Line 49: | Line 62: | ||
Returns WORD | Returns WORD | ||
- | </PRE> | + | </code> |
- | [[Category:Mou]] | + | {{page> |