|
|
1.1 root 1: /*
2: * Refresh all active windows
3: *
4: * Copyright (c) 1990-93 by Udo Munk
5: */
6:
7: #ifdef AIX
8: #define NLS
9: #endif
10:
11: #include <curses.h>
12: #include "winfun.h"
13:
14: extern W_LIST *wl;
15:
16: refreshall()
17: {
18: register W_LIST *wlp;
19:
20: wlp = wl;
21: while (wlp != (W_LIST *) 0) {
22: touchwin(wlp->w_w);
23: wnoutrefresh(wlp->w_w);
24: wlp = wlp->w_next;
25: }
26: doupdate();
27: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.