Added window specific creation functions

This commit is contained in:
James Booth
2014-12-15 00:28:28 +00:00
parent 3cef4e1db4
commit 070547a7ff
6 changed files with 136 additions and 63 deletions

View File

@@ -110,9 +110,12 @@ typedef struct prof_win_t {
} wins;
} ProfWin;
ProfWin* win_create(const char * const title, win_type_t type);
ProfWin* win_create_console(void);
ProfWin* win_create_chat(const char * const barejid);
ProfWin* win_create_muc(const char * const roomjid);
ProfWin* win_create_muc_config(const char * const title, DataForm *form);
ProfWin* win_create_private(const char * const fulljid);
ProfWin* win_create_xmlconsole(void);
void win_free(ProfWin *window);
void win_update_virtual(ProfWin *window);