Added SILC Thread Queue API
[crypto.git] / apps / irssi / src / fe-text / term-curses.h
1 #if defined(USE_NCURSES) && !defined(RENAMED_NCURSES)
2 #  include <ncurses.h>
3 #else
4 #  include <curses.h>
5 #endif
6
7 #ifdef HAVE_CUIX
8 #include <form.h>
9 #include <panel.h>
10 #endif
11
12 struct _TERM_WINDOW {
13         int x, y;
14         int width, height;
15         WINDOW *win;
16 };