home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / window / pcw_c / scrldemo.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-30  |  244 b   |  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.