home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / languages / c / oslib / Examples / p3-018 < prev    next >
Text File  |  1994-03-30  |  301b  |  16 lines

  1. #include "os.h"
  2. #include "wimp.h"
  3.  
  4. extern wimp_block Block;
  5.       /*|Block| is the wimp_poll block*/
  6.  
  7. void redraw (void)
  8.  
  9. {  bool more;
  10.  
  11.    for (more = wimp_redraw_window (&Block.redraw); more;
  12.          more = wimp_get_rectangle (&Block.redraw))
  13.    {  /*Redraw contents of appropriate window*/
  14.    }
  15. }
  16.