home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / c / pcw_c.zip / SCRLDEMO.C < prev    next >
Text File  |  1990-01-30  |  244b  |  14 lines

  1. #include "pcwproto.h"
  2.  
  3. void main(void) {
  4.    WNDPTR  *wnd;
  5.  
  6.    wnd = wpush(6,10,18,70);
  7.    while (!kbhit()) {
  8.       scroll(6,10,18,70,RED,RED,-3);
  9.       scroll(6,10,18,70,BLUE,BLUE,3);
  10.    }
  11.    wnd = wpop(wnd);
  12.    keybrd_flush();
  13. }
  14.