about summary refs log tree commit diff stats
path: root/windows.h
diff options
context:
space:
mode:
Diffstat (limited to 'windows.h')
-rw-r--r--windows.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/windows.h b/windows.h
index 90f10577..a4c089dc 100644
--- a/windows.h
+++ b/windows.h
@@ -5,13 +5,15 @@
 #include <ncurses.h>
 
 struct prof_win {
-    char from[70];
+    char from[100];
     WINDOW *win;
 };
 
 void gui_init(void);
 void gui_close(void);
 void switch_to(int i);
+int in_chat(void);
+void get_recipient(char *recipient);
 void show_incomming_msg(char *from, char *message);
 void show_outgoing_msg(char *from, char *message);
 void inp_get_command_str(char *cmd);