en:ibm:prcp:vio:getansi

Differences

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

Link to this comparison view

en:ibm:prcp:vio:getansi [2016/02/04 09:28] – created valeriusen:ibm:prcp:vio:getansi [2016/09/14 10:53] (current) valerius
Line 1: Line 1:
 ==== VioGetAnsi ==== ==== VioGetAnsi ====
 +
 +**Bindings**: [[getansi#C bindings|C]], [[getansi#MASM bindings|MASM]]
  
 This call returns the current ANSI status On/Off state.  This call returns the current ANSI status On/Off state. 
Line 18: Line 20:
 |465 |ERROR_VIO_DETACHED | |465 |ERROR_VIO_DETACHED |
  
 +=== C bindings ===
 +
 +<code c>
 +#define INCL_VIO
 +
 +USHORT  rc = VioGetAnsi(Indicator, VioHandle);
 +
 +PUSHORT          Indicator;     /* On/Off indicator (returned) */
 +HVIO             VioHandle;     /* Vio handle */
 +
 +USHORT           rc;            /* return code */
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code asm>
 +EXTRN  VioGetAnsi:FAR
 +INCL_VIO            EQU 1
 +
 +PUSH@  WORD    Indicator     ;On/Off indicator (returned)
 +PUSH   WORD    VioHandle     ;Vio handle
 +CALL   VioGetAnsi
 +
 +Returns WORD
 +</code>