Added win create functions for chat and private chat

This commit is contained in:
James Booth
2014-12-10 22:34:33 +00:00
parent 9ba5a576ba
commit 8e46b9e75b
5 changed files with 79 additions and 2 deletions

View File

@@ -111,6 +111,9 @@ typedef struct prof_win_t {
} ProfWin;
ProfWin* win_create(const char * const title, win_type_t type);
ProfWin* win_create_chat(const char * const barejid);
ProfWin* win_create_private(const char * const fulljid);
void win_free(ProfWin *window);
void win_update_virtual(ProfWin *window);
void win_move_to_end(ProfWin *window);