mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
f57b551a86
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4344 dbcabf3a-b0e7-0310-adc4-f8d773084564
17 lines
252 B
C
17 lines
252 B
C
#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;
|
|
};
|