blob: 251bb23e2d59c1cc55df111b7f514ab48fe85939 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef IMAP_ZLIB_PLUGIN_H
#define IMAP_ZLIB_PLUGIN_H
struct module;
extern const char *imap_zlib_plugin_dependencies[];
extern const char imap_zlib_plugin_binary_dependency[];
void imap_zlib_plugin_init(struct module *module);
void imap_zlib_plugin_deinit(void);
#endif
|