home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / program / c / xaes_new / tools.c < prev    next >
C/C++ Source or Header  |  1994-09-21  |  651b  |  24 lines

  1. /********************************************************************
  2.  *                                                                0.10*
  3.  *    XAES: Tools module                                                *
  4.  *                                                                    *
  5.  *    Copyright (C) 1994, Bitgate Software                            *
  6.  *                                                                    *
  7.  *    Only ONE tool to use?  Can't optimize much of that...            *
  8.  *                                                                    *
  9.  ********************************************************************/
  10.  
  11. #include "xaes.h"
  12.  
  13. GLOBAL void WRedrawAllWindows(void)
  14. {
  15.     WINDOW *win = WindowChain;
  16.  
  17.     while (win->next) {
  18.         win = win->next;
  19.         WRedrawWindow(win->prev, win->prev->size.g_x,
  20.                         win->prev->size.g_y, win->prev->size.g_w,
  21.                         win->prev->size.g_h);
  22.     }
  23. }
  24.