aboutsummaryrefslogtreecommitdiff
path: root/src/event.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/event.h')
-rw-r--r--src/event.h21
1 files changed, 12 insertions, 9 deletions
diff --git a/src/event.h b/src/event.h
index a4b7e7c..38890b2 100644
--- a/src/event.h
+++ b/src/event.h
@@ -28,23 +28,26 @@
28#include "application.h" 28#include "application.h"
29 29
30void 30void
31event_update_profile(MESSENGER_Application *app, 31event_update_profile(MESSENGER_Application *app);
32 int argc,
33 void **argv);
34 32
35void 33void
36event_update_chats(MESSENGER_Application *app, 34event_update_chats(MESSENGER_Application *app,
37 int argc, 35 struct GNUNET_CHAT_Context *context,
38 void **argv); 36 const struct GNUNET_CHAT_Message *msg);
39 37
40void 38void
41event_joining_contact(MESSENGER_Application *app, 39event_joining_contact(MESSENGER_Application *app,
42 int argc, 40 struct GNUNET_CHAT_Context *context,
43 void **argv); 41 const struct GNUNET_CHAT_Message *msg);
42
43void
44event_invitation(MESSENGER_Application *app,
45 struct GNUNET_CHAT_Context *context,
46 const struct GNUNET_CHAT_Message *msg);
44 47
45void 48void
46event_receive_message(MESSENGER_Application *app, 49event_receive_message(MESSENGER_Application *app,
47 int argc, 50 struct GNUNET_CHAT_Context *context,
48 void **argv); 51 const struct GNUNET_CHAT_Message *msg);
49 52
50#endif /* EVENT_H_ */ 53#endif /* EVENT_H_ */