aboutsummaryrefslogtreecommitdiff
path: root/src/screen.h
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-03-28 06:35:19 -0400
committerB. Watson <urchlay@slackware.uk>2026-03-28 06:35:19 -0400
commitf8d11de72ddbefd87532102f04cf182a3f122529 (patch)
tree3e71fc341357d2908be3f5b7b63bc9e472be408b /src/screen.h
parentb6a51ea52ab2b58e9b6687170547be7536c0fa9c (diff)
downloadfujinet-chat-f8d11de72ddbefd87532102f04cf182a3f122529.tar.gz
Save a few bytes...
Diffstat (limited to 'src/screen.h')
-rw-r--r--src/screen.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/screen.h b/src/screen.h
index 0d3e268..af95690 100644
--- a/src/screen.h
+++ b/src/screen.h
@@ -7,9 +7,9 @@
#define SCR_UNUSED 0
#define SCR_INACTIVE 1
-#define SCR_ACTIVE 2
-#define SCR_HILITE 3
-#define SCR_OTHER 4
+#define SCR_OTHER 2
+#define SCR_ACTIVE 3
+#define SCR_HILITE 4
#define SCR_SERVER 0
#define SCR_PRIV 1
@@ -102,8 +102,6 @@ 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... */