blob: 7dcb70e296d112f1f57f2208665934880a975e2e (
plain)
1
2
3
4
5
6
7
8
|
#ifndef MASTER_CONNECTION_H
#define MASTER_CONNECTION_H
bool master_connection_create(struct master_service_connection *conn,
struct mail_storage_service_ctx *storage_service);
void master_connections_destroy(void);
#endif
|