OutputToScreenWithPointer

Displays a message on a selected screen.

Library:LibC
Classification:NetWare OS
Service:Screen Support

Syntax

  #include <screen.h> 
   
  int OutputToScreenWithPointer (
     scr_t         scrID,
     const char   *format,
     va_list       arguments);
  

Parameters

scrID

(IN) Specifies the screen ID where the message is to be displayed.

format

(IN) Points to a null-terminated, ASCII control string similar to that used with the printf function (except for floating point specifiers). See Print Format Control Strings.

arguments

(IN) Specifies a variable argument list for conversion specifiers. The number of arguments in the list is determined by the format string.

Return Values

Returns zero if successful. Otherwise, the following:

Hex

Description

0xFFFFFFFF

Failure; invalid screen ID specified.

See Also