DisplayScreenText

Displays text on the specified screen.

Library:LibC
Classification:NetWare OS
Service:Screen Support

Syntax

  #include <screen.h> 
   
  int DisplayScreenText (
     scr_t      scrID,
     uint32_t   line,
     uint32_t   col,
     uint32_t   length,
     char      *text);
  

Parameters

scrID

(IN) Specifies the screen.

line

(IN) Specifies the position of the text by specifying a line number.

col

(IN) Specifies the position of the text by specifying a column number.

length

(IN) Specifies the number of bytes in the text string.

text

(IN) Points to the text string.

Return Values

If successful, returns 0.

See Also