en:ibm:prcp:mou:initreal

Differences

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

Link to this comparison view

en:ibm:prcp:mou:initreal [2016/02/04 05:24] – created valeriusen:ibm:prcp:mou:initreal [2016/09/15 04:10] (current) valerius
Line 2: Line 2:
  
  
-**Bindings**: C, MASM +**Bindings**: [[initreal#bindings|C]][[initreal#MASM bindings|MASM]]
  
 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  rc = MouInitReal(DriverName);
 +
 +PSZ              DriverName;    /* Pointer draw driver name */
 +
 +USHORT           rc;            /* return code */
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code asm>
 +EXTRN  MouInitReal:FAR
 +INCL_MOU            EQU 1
 +
 +PUSH@  ASCIIZ  DriverName    ;Pointer draw driver name
 +CALL   MouInitReal
 +
 +Returns WORD
 +</code>