aboutsummaryrefslogtreecommitdiffstats
path: root/mail/session.h
blob: 8b870f038328e05b5ec01aaac42f1b272e4f8bd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef EVOLUTION_MAIL_SESSION_H
#define EVOLUTION_MAIL_SESSION_H

#include <camel/camel-store.h>
#include <camel/camel-session.h>
typedef struct {
    CamelSession *session;
    CamelStore   *store;
} SessionStore;

SessionStore *session_store_new     (const char *uri);
void          session_store_destroy (SessionStore *ss);
void          session_init          (void);

extern SessionStore *default_session;

#endif /* EVOLUTION_MAIL_SESSION_H */