about summary refs log tree commit diff stats
path: root/windows.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-02-12 22:38:27 +0000
committerJames Booth <boothj5@gmail.com>2012-02-12 22:38:27 +0000
commit02f5df5b20bc589e277c8772aa836ff2bb5e8651 (patch)
tree6a5402f74ee86ac98603d0fe14aec59f94e2064a /windows.h
parente112ef5aacd15b9cd9c96bca35ca571c020284d5 (diff)
downloadprofani-tty-02f5df5b20bc589e277c8772aa836ff2bb5e8651.tar.gz
Renamed title bar functions
Diffstat (limited to 'windows.h')
-rw-r--r--windows.h32
1 files changed, 17 insertions, 15 deletions
diff --git a/windows.h b/windows.h
index b73e04d0..efc55b03 100644
--- a/windows.h
+++ b/windows.h
@@ -17,6 +17,23 @@ void create_title_bar(void);
 void create_status_bar(void);
 void create_input_window(void);
 
+// title bar actions
+void title_bar_show(char *title);
+
+// main window actions
+int win_is_active(int i);
+void win_switch_to(int i);
+void win_close_win(void);
+int win_in_chat(void);
+void win_get_recipient(char *recipient);
+void win_show_incomming_msg(char *from, char *message);
+void win_show_outgoing_msg(char *from, char *to, char *message);
+
+// console window actions
+void cons_help(void);
+void cons_bad_command(char *cmd);
+void cons_show(char *cmd);
+
 // status bar actions
 void status_bar_refresh(void);
 void status_bar_clear(void);
@@ -34,19 +51,4 @@ void inp_put_back(void);
 void inp_non_block(void);
 void inp_get_password(char *passwd);
 
-// main window actions
-void win_title_bar_show(char *title);
-int win_is_active(int i);
-void win_switch_to(int i);
-void win_close_win(void);
-int win_in_chat(void);
-void win_get_recipient(char *recipient);
-void win_show_incomming_msg(char *from, char *message);
-void win_show_outgoing_msg(char *from, char *to, char *message);
-
-// console window actions
-void cons_help(void);
-void cons_bad_command(char *cmd);
-void cons_show(char *cmd);
-
 #endif