]> code.citadel.org Git - citadel.git/blobdiff - citadel/screen.h
* Variable names, comments, documentation, etc... removed the acronym 'BBS'
[citadel.git] / citadel / screen.h
index 3c47d710f28ad1e6e3ef2366c8d9f1d8a7f925dc..02975030b88ce12470832fcddbfd9908f31e935a 100644 (file)
@@ -2,13 +2,15 @@
 
 /* client code may need the ERR define: */
 
+#ifndef DISABLE_CURSES
 #ifdef HAVE_NCURSES_H
 #include <ncurses.h>
 #elif defined(HAVE_CURSES_H)
 #include <curses.h>
 #endif
+#endif
 
-void status_line(const char *humannode, const char *bbs_city,
+void status_line(const char *humannode, const char *site_location,
                 const char *room_name, int secure, int newmailcount);
 void screen_new(void);
 void screen_delete(void);
@@ -29,9 +31,11 @@ int scr_color(int colornum);
 void scr_flush(void);
 void err_flush(void);
 void sln_flush(void);
-int scr_set_windowsize(void);
+int scr_set_windowsize(CtdlIPC* ipc);
 void windows_new(void);
 void windows_delete(void);
 int scr_blockread(void);
 int is_curses_enabled(void);
 RETSIGTYPE scr_winch(int signum);
+void wait_indicator(int state);
+void ctdl_beep(void);