en:docs:fapi:mouinitreal

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
en:docs:fapi:mouinitreal [2021/10/07 13:54] – created prokusheven:docs:fapi:mouinitreal [2021/11/04 13:05] (current) prokushev
Line 1: Line 1:
 +{{page>en:templates:fapiint}}
 +
 +====== 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>
  MouInitReal (DriverName)  MouInitReal (DriverName)
 +</code>
  
-==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:Return code descriptions are: + 
-* 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:Return code descriptions are: 
 + 
 +  * 0 NO_ERROR 
 +  * 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     DriverName;    /* Pointer draw driver name */ PSZ     DriverName;    /* Pointer draw driver name */
 USHORT  rc;            /* return code */ USHORT  rc;            /* return code */
-</PRE>+</code>
  
-===MASM=== +====MASM==== 
-<PRE>+<code asm>
 EXTRN  MouInitReal:FAR EXTRN  MouInitReal:FAR
 INCL_MOU            EQU 1 INCL_MOU            EQU 1
Line 49: Line 62:
  
 Returns WORD Returns WORD
-</PRE>+</code> 
  
-[[Category:Mou]]+{{page>en:templates:fapi}}