Window per chat and incoming notifications

This commit is contained in:
James Booth
2012-02-08 22:26:43 +00:00
parent ab50d324c4
commit 17a284b24b
3 changed files with 125 additions and 65 deletions

View File

@@ -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);