aboutsummaryrefslogtreecommitdiff
path: root/src/screen.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/screen.h')
-rw-r--r--src/screen.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/screen.h b/src/screen.h
index 787310d..2959b1e 100644
--- a/src/screen.h
+++ b/src/screen.h
@@ -7,8 +7,9 @@
#define SCR_UNUSED 0
#define SCR_INACTIVE 1
-#define SCR_ACTIVE 2
-#define SCR_HILITE 3
+#define SCR_OTHER 2
+#define SCR_ACTIVE 3
+#define SCR_HILITE 4
#define SCR_SERVER 0
#define SCR_PRIV 1
@@ -56,6 +57,7 @@ void scr_display(char s);
note that it's a bad idea to write to the screen while it's
scrolled back! */
void scr_scrollback(void);
+void scr_scrollback_bonus(void);
/* end scrollback mode (display the bottom 23 lines + status) */
void scr_end_scrollback(void);
@@ -100,12 +102,14 @@ void scr_print_priv(const char *text);
will have to call this. */
void scr_activate(char s);
-void scr_hilite_active(void);
-
char *scr_get_cur_name(void);
/* XXX: this really should be in a utils.c or common.c... */
-void scr_waitvcount(u8 c);
+void scr_waitvcount_116(void);
+
+/* print decimal numbers (see printnum.s) */
+void scr_cur_printnum(u16 c);
+void scr_act_printnum(u16 c);
/**** end of public API ****/