blob: 9d9712b2cd05dfaf153815601cecfdd32ce4ca06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#if defined(USE_NCURSES) && !defined(RENAMED_NCURSES)
# include <ncurses.h>
#else
# include <curses.h>
#endif
#ifdef HAVE_CUIX
#include <form.h>
#include <panel.h>
#endif
struct _TERM_WINDOW {
int x, y;
int width, height;
WINDOW *win;
};
|