blob: 1e55d108b82153d02f5f4f8b30416d90881b5bbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef IMAP_QUOTA_PLUGIN_H
#define IMAP_QUOTA_PLUGIN_H
struct module;
extern const char *imap_quota_plugin_dependencies[];
extern const char imap_quota_plugin_binary_dependency[];
void imap_quota_plugin_init(struct module *module);
void imap_quota_plugin_deinit(void);
#endif
|