mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 07:02:12 +02:00
16 lines
252 B
C
16 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;
|
||
|
|
};
|