]> code.citadel.org Git - citadel.git/blob - citadel/screen.h
I made some changes that I hope will help the lagging input problem
[citadel.git] / citadel / screen.h
1 /* $Id$ */
2
3 void status_line(const char *humannode, const char *bbs_city,
4                  const char *room_name, int secure, int newmailcount);
5 void screen_new(void);
6 void screen_delete(void);
7 int screen_set(void);
8 int screen_reset(void);
9 int scr_printf(char *fmt, ...);
10 int err_printf(char *fmt, ...);
11 int sln_printf(char *fmt, ...);
12 int sln_printf_if(char *fmt, ...);
13 int scr_getc(void);
14 int scr_putc(int c);
15 int sln_putc(int c);
16 int scr_color(int colornum);
17 void scr_flush(void);
18 void err_flush(void);
19 void sln_flush(void);
20 int scr_set_windowsize(void);
21 void windows_new(void);
22 void windows_delete(void);
23 int scr_blockread(void);