Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- QWIKC20 & Multi-Level Virtual Windows - Norton Guide http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]

  ---------------------------------------------------------------------------
  wwrite                                                                WNDWC
  ---------------------------------------------------------------------------
  Function       Writes a string relative to the current window using the
                 window attribute.
  Syntax         void wwrite( unsigned char row, unsigned char col,
                              char *astr );
  Remarks        This routine writes the string astr at window-relative
                 (row,col) with the attribute wndwattr from the window
                 record.  If SAMEATTR is used for wndwattr, then the
                 attributes will remain the same on the screen.
  Return value   None.
  Screens        All video pages and virtual screens.
  EOS            Updated.
  Restrictions   Stay within the window limits.  Long strings will not wrap
                 around to column 1.
  Example        Write the string "Enter" at (2,1) with the current window
                 attribute:

                   wwrite( 2, 1, "Enter" );

  Example        Write the string "Answer" at (2,1) with the attribute of
                 flashing white on red and then restore the current window
                 attribute:

                   tws.wndwattr = BLINK+WHITE+RED_BG;
                   wwrite( 2, 1, "Answer" );
                   tws.wndwattr = tws.origattr;


See Also: wwritec()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson