Jump to content

VioWrtTTY (FAPI): Difference between revisions

From EDM2
Created page with "==Description== This call writes a character string to the display starting at the current cursor position. At the completion of the write, the cursor is positioned at the fi..."
 
Ak120 (talk | contribs)
mNo edit summary
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==Description==
This call writes a character string to the display starting at the current cursor position.
This call writes a character string to the display starting at the current cursor position.


At the completion of the write, the cursor is positioned at the first position beyond the end of the string.
At the completion of the write, the cursor is positioned at the first position beyond the end of the string.
==Syntax==
==Syntax==
<PRE>
  VioWrtTTY (CharStr, Length, VioHandle)
  VioWrtTTY
 
    (CharStr, Length, VioHandle)
</PRE>


==Parameters==
==Parameters==
; CharStr (PCH) - input : Address of the string to be written.  
;CharStr ([[PCH]]) - input : Address of the string to be written.
 
;Length ([[USHORT]]) - input :  Length of the character string in bytes.
; Length (USHORT) - input :  Length of the character string in bytes.  
;VioHandle ([[HVIO]]) - input : This must be zero unless the caller is a Presentation Manager application, in which case it must be the value returned by VioGetPs.
 
; VioHandle (HVIO) - input : This must be zero unless the caller is a Presentation Manager application, in which case it must be the value returned by VioGetPs.


==Return Code==
==Return Code==
rc (USHORT) - return
;rc (USHORT) - return:Return code descriptions are:
 
*0 NO_ERROR
Return code descriptions are:
*355 ERROR_VIO_MODE
 
*436 ERROR_VIO_INVALID_HANDLE
* 0         NO_ERROR  
*465 ERROR_VIO_DETACHED
* 355       ERROR_VIO_MODE  
* 436       ERROR_VIO_INVALID_HANDLE  
* 465       ERROR_VIO_DETACHED


==Remarks==
==Remarks==
Line 37: Line 28:


===PM Considerations===
===PM Considerations===
Write a character string from the current cursor position in TTY mode to the Advanced VIO presentation space. The cursor is positioned after the last character written at the end of the write.


Write a character string from the current cursor position in TTY mode to the Advanced VIO presentation space. The cursor is positioned after the last character written at the end of the write.
==Bindings==
 
===C===
==Example Code==
=== C Binding===
<PRE>
<PRE>
#define INCL_VIO
#define INCL_VIO
Line 47: Line 37:
USHORT  rc = VioWrtTTY(CharStr, Length, VioHandle);
USHORT  rc = VioWrtTTY(CharStr, Length, VioHandle);


PCH             CharStr;      /* String to be written */
PCH     CharStr;      /* String to be written */
USHORT           Length;        /* Length of string */
USHORT Length;        /* Length of string */
HVIO             VioHandle;    /* Video handle */
HVIO   VioHandle;    /* Video handle */


USHORT           rc;            /* return code */
USHORT rc;            /* return code */
</PRE>
</PRE>


===MASM Binding===
===MASM===
<PRE>
<PRE>
EXTRN VioWrtTTY:FAR
EXTRN     VioWrtTTY:FAR
INCL_VIO           EQU 1
INCL_VIO   EQU 1


PUSH@  OTHER  CharStr       ;String to be written
PUSH@  OTHER  CharStr   ;String to be written
PUSH  WORD    Length       ;Length of string
PUSH  WORD    Length     ;Length of string
PUSH  WORD    VioHandle     ;Video handle
PUSH  WORD    VioHandle ;Video handle
CALL  VioWrtTTY
CALL  VioWrtTTY


Line 67: Line 57:
</PRE>
</PRE>


==Related Functions==
[[Category:Vio]]
*
 
[[Category:The OS/2 API Project]]

Latest revision as of 08:21, 26 January 2020

This call writes a character string to the display starting at the current cursor position.

At the completion of the write, the cursor is positioned at the first position beyond the end of the string.

Syntax

VioWrtTTY (CharStr, Length, VioHandle)

Parameters

CharStr (PCH) - input
Address of the string to be written.
Length (USHORT) - input
Length of the character string in bytes.
VioHandle (HVIO) - input
This must be zero unless the caller is a Presentation Manager application, in which case it must be the value returned by VioGetPs.

Return Code

rc (USHORT) - return
Return code descriptions are:
  • 0 NO_ERROR
  • 355 ERROR_VIO_MODE
  • 436 ERROR_VIO_INVALID_HANDLE
  • 465 ERROR_VIO_DETACHED

Remarks

If a string write gets to the end of the line and is not complete, the string write continues at the beginning of the next line. If the write gets to the end of the screen, the screen is scrolled, and the write continues until completed.

The characters carriage return, line feed, backspace, tab, and bell are treated as commands rather than printable characters. Backspace is a non-destructive backspace. Tabs are expanded to provide standard 8-byte-wide fields. VioWrtTTY is the only video call affected by Ctrl-PrtSc and ANSI.

Characters are written using the current attribute defined by ANSI or the default value 7.

VioWrtTTY is supported in graphics mode to process ANSI sequences. This allows the application to enter and exit a graphics mode.

PM Considerations

Write a character string from the current cursor position in TTY mode to the Advanced VIO presentation space. The cursor is positioned after the last character written at the end of the write.

Bindings

C

#define INCL_VIO

USHORT  rc = VioWrtTTY(CharStr, Length, VioHandle);

PCH     CharStr;       /* String to be written */
USHORT  Length;        /* Length of string */
HVIO    VioHandle;     /* Video handle */

USHORT  rc;            /* return code */

MASM

EXTRN      VioWrtTTY:FAR
INCL_VIO   EQU 1

PUSH@  OTHER   CharStr    ;String to be written
PUSH   WORD    Length     ;Length of string
PUSH   WORD    VioHandle  ;Video handle
CALL   VioWrtTTY

Returns WORD