diff options
Diffstat (limited to 'src/ui/messenger.h')
-rw-r--r-- | src/ui/messenger.h | 12 |
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)) | 31 | typedef struct MESSENGER_Application MESSENGER_Application; |
32 | 32 | ||
33 | struct UI_MESSENGER_Handle | 33 | typedef 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 | ||
72 | void | 72 | void |
73 | ui_messenger_init(struct UI_MESSENGER_Handle *handle); | 73 | ui_messenger_init(MESSENGER_Application *app, |
74 | UI_MESSENGER_Handle *handle); | ||
75 | |||
76 | void | ||
77 | ui_messenger_update_profile(MESSENGER_Application *app); | ||
74 | 78 | ||
75 | #endif /* UI_MESSENGER_H_ */ | 79 | #endif /* UI_MESSENGER_H_ */ |