1 /* Copyright (c) 2015-2018 Dovecot authors, see the included COPYING file */ 2 3 #ifndef PUSH_NOTIFICATION_PLUGIN_H 4 #define PUSH_NOTIFICATION_PLUGIN_H 5 6 extern const char *push_notification_plugin_dependencies[]; 7 extern struct event_category event_category_push_notification; 8 extern struct push_notification_event push_notification_event_messagenew; 9 10 struct module; 11 12 struct event_category *push_notification_get_event_category(void); 13 struct push_notification_event *push_notification_get_event_messagenew(void); 14 15 void push_notification_plugin_init(struct module *module); 16 void push_notification_plugin_deinit(void); 17 18 #endif 19