--disable-curses-windows option to configure

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@723 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-10-08 12:54:26 +00:00 committed by cras
commit 11f2accbb1
8 changed files with 97 additions and 26 deletions

View file

@ -7,7 +7,9 @@
typedef struct {
WINDOW_REC *active;
#ifdef USE_CURSES_WINDOWS
WINDOW *curses_win;
#endif
int first_line, last_line, lines;
int statusbar_lines;
void *statusbar;
@ -25,7 +27,9 @@ void mainwindow_destroy(MAIN_WINDOW_REC *window);
void mainwindows_redraw(void);
void mainwindows_resize(int ychange, int xchange);
#ifdef USE_CURSES_WINDOWS
void mainwindows_recreate(void);
#endif
int mainwindows_reserve_lines(int count, int up);