diff options
Diffstat (limited to 'src/application.h')
-rw-r--r-- | src/application.h | 8 |
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 | |||
76 | application_run(MESSENGER_Application *app); | 78 | application_run(MESSENGER_Application *app); |
77 | 79 | ||
78 | typedef void (*MESSENGER_ApplicationEvent) (MESSENGER_Application *app, | 80 | typedef void (*MESSENGER_ApplicationEvent) (MESSENGER_Application *app, |
79 | void *cls); | 81 | int argc, |
82 | void **argv); | ||
80 | 83 | ||
81 | void | 84 | void |
82 | application_call_event(MESSENGER_Application *app, | 85 | application_call_event(MESSENGER_Application *app, |
83 | MESSENGER_ApplicationEvent event, | 86 | MESSENGER_ApplicationEvent event, |
84 | void *cls); | 87 | int argc, |
88 | void **argv); | ||
85 | 89 | ||
86 | void | 90 | void |
87 | application_exit(MESSENGER_Application *app, | 91 | application_exit(MESSENGER_Application *app, |