about summary refs log tree commit diff stats
path: root/windows.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-02-08 22:26:43 +0000
committerJames Booth <boothj5@gmail.com>2012-02-08 22:26:43 +0000
commit17a284b24befa7bf459b9d08bd018403c99ee86b (patch)
tree89d20359b5681f3dda5724f04df0685afec739a5 /windows.h
parentab50d324c418368eaffeb7d1e9d002e1319e48b1 (diff)
downloadprofani-tty-17a284b24befa7bf459b9d08bd018403c99ee86b.tar.gz
Window per chat and incoming notifications
Diffstat (limited to 'windows.h')
-rw-r--r--windows.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/windows.h b/windows.h
index 34203873..90f10577 100644
--- a/windows.h
+++ b/windows.h
@@ -4,8 +4,14 @@
 #include <strophe/strophe.h>
 #include <ncurses.h>
 
+struct prof_win {
+    char from[70];
+    WINDOW *win;
+};
+
 void gui_init(void);
 void gui_close(void);
+void switch_to(int i);
 void show_incomming_msg(char *from, char *message);
 void show_outgoing_msg(char *from, char *message);
 void inp_get_command_str(char *cmd);