diff options
Diffstat (limited to 'gui.h')
-rw-r--r-- | gui.h | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ -void run_gui(void); -void add_chat(char* jid); -void add_incoming_text_message(char* sender_jid, char* content); +// interface for main.c +void gui_run(void); + +// interface for limox.c +void gui_connected(char* jid, char* password); +void gui_disconnected(void); +void gui_suspended(void); +void gui_resumed(void); |