blob: 4103b6d17995618cace39fcdf0e51a1667903251 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#if defined(USE_NCURSES) && !defined(RENAMED_NCURSES)
# include <ncurses.h>
#else
# include <curses.h>
#endif
struct _TERM_WINDOW {
int x, y;
int width, height;
WINDOW *win;
};
|