aboutsummaryrefslogtreecommitdiff
path: root/src/ui/messenger.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/messenger.h')
-rw-r--r--src/ui/messenger.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/ui/messenger.h b/src/ui/messenger.h
index b309dea..ed37ad3 100644
--- a/src/ui/messenger.h
+++ b/src/ui/messenger.h
@@ -28,9 +28,9 @@
28#include <gtk-3.0/gtk/gtk.h> 28#include <gtk-3.0/gtk/gtk.h>
29#include <libhandy-1/handy.h> 29#include <libhandy-1/handy.h>
30 30
31#define UI_UNUSED __attribute__((unused)) 31typedef struct MESSENGER_Application MESSENGER_Application;
32 32
33struct UI_MESSENGER_Handle 33typedef struct UI_MESSENGER_Handle
34{ 34{
35 GtkApplicationWindow *main_window; 35 GtkApplicationWindow *main_window;
36 36
@@ -67,9 +67,13 @@ struct UI_MESSENGER_Handle
67 GtkButton *chat_details_button; 67 GtkButton *chat_details_button;
68 68
69 GtkButton *hide_chat_details_button; 69 GtkButton *hide_chat_details_button;
70}; 70} UI_MESSENGER_Handle;
71 71
72void 72void
73ui_messenger_init(struct UI_MESSENGER_Handle *handle); 73ui_messenger_init(MESSENGER_Application *app,
74 UI_MESSENGER_Handle *handle);
75
76void
77ui_messenger_update_profile(MESSENGER_Application *app);
74 78
75#endif /* UI_MESSENGER_H_ */ 79#endif /* UI_MESSENGER_H_ */