Writes a character to the display a specified number of times.

#define INCL_VIO
#include <os2.h>

PCH       Char;       /*  Character to be written. */
ULONG     Times;      /*  Repeat count. */
ULONG     Row;        /*  Starting row position. */
ULONG     Column;     /*  Starting column position. */
HVIO      VioHandle;  /*  VIO presentation-space handle. */
APIRET    rc;         /*  Return code. */

rc = VioWrtNChar(Char, Times, Row, Column,
       VioHandle);


[Back] [Next]