aboutsummaryrefslogtreecommitdiff
path: root/src/application.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/application.h')
-rw-r--r--src/application.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/application.h b/src/application.h
index 61aed2a..ff9875d 100644
--- a/src/application.h
+++ b/src/application.h
@@ -61,6 +61,8 @@ typedef struct MESSENGER_Application
61 int status; 61 int status;
62 gboolean mobile; 62 gboolean mobile;
63 63
64 GHashTable *bindings;
65
64 UI_MESSENGER_Handle messenger; 66 UI_MESSENGER_Handle messenger;
65 67
66 UI_NEW_PLATFORM_Handle new_platform; 68 UI_NEW_PLATFORM_Handle new_platform;
@@ -76,12 +78,14 @@ void
76application_run(MESSENGER_Application *app); 78application_run(MESSENGER_Application *app);
77 79
78typedef void (*MESSENGER_ApplicationEvent) (MESSENGER_Application *app, 80typedef void (*MESSENGER_ApplicationEvent) (MESSENGER_Application *app,
79 void *cls); 81 int argc,
82 void **argv);
80 83
81void 84void
82application_call_event(MESSENGER_Application *app, 85application_call_event(MESSENGER_Application *app,
83 MESSENGER_ApplicationEvent event, 86 MESSENGER_ApplicationEvent event,
84 void *cls); 87 int argc,
88 void **argv);
85 89
86void 90void
87application_exit(MESSENGER_Application *app, 91application_exit(MESSENGER_Application *app,