Mainwindows use now real curses WINDOWs, this should fix irssi with some

curseses that didn't like setscrreg() (solaris 8).


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@542 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-07-26 23:29:34 +00:00 committed by cras
commit 091292e079
9 changed files with 143 additions and 130 deletions

View file

@ -14,16 +14,13 @@
int init_screen(void); /* Initialize screen, detect screen length */
void deinit_screen(void); /* Deinitialize screen */
void set_color(int col);
void set_bg(int col);
void scroll_up(int y1, int y2); /* Scroll area up */
void scroll_down(int y1, int y2); /* Scroll area down */
void set_color(WINDOW *window, int col);
void set_bg(WINDOW *window, int col);
void move_cursor(int y, int x);
void screen_refresh_freeze(void);
void screen_refresh_thaw(void);
void screen_refresh(void);
void screen_refresh(WINDOW *window);
#endif