]> code.citadel.org Git - citadel.git/blob - citadel/textclient/screen.h
HUGE update to the way the paginator works. scr_putc() now keeps track of how many...
[citadel.git] / citadel / textclient / screen.h
1
2 /* client code may need the ERR define: */
3
4 void screen_new(void);
5 int scr_printf(char *fmt, ...);
6
7 #define SCR_NOBLOCK 0
8 #define SCR_BLOCK -1
9 int scr_getc(int delay);
10
11 int scr_putc(int c);
12 void scr_flush(void);
13 int scr_blockread(void);
14 RETSIGTYPE scr_winch(int signum);
15 void wait_indicator(int state);
16 void ctdl_beep(void);