diff options
author | Not Zed <NotZed@Ximian.com> | 2005-05-20 21:12:05 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2005-05-20 21:12:05 +0800 |
commit | ca5c50ddfeda1a3a8aaaaa7e1a42ab4c34200283 (patch) | |
tree | abfaabf3ea4b49215ea76c79f15e0788e6e07a27 /plugins/mail-remote/evolution-mail-store.h | |
parent | ef769539607b93774280c2111ba6d2f159e121c7 (diff) | |
download | gsoc2013-evolution-ca5c50ddfeda1a3a8aaaaa7e1a42ab4c34200283.tar gsoc2013-evolution-ca5c50ddfeda1a3a8aaaaa7e1a42ab4c34200283.tar.gz gsoc2013-evolution-ca5c50ddfeda1a3a8aaaaa7e1a42ab4c34200283.tar.bz2 gsoc2013-evolution-ca5c50ddfeda1a3a8aaaaa7e1a42ab4c34200283.tar.lz gsoc2013-evolution-ca5c50ddfeda1a3a8aaaaa7e1a42ab4c34200283.tar.xz gsoc2013-evolution-ca5c50ddfeda1a3a8aaaaa7e1a42ab4c34200283.tar.zst gsoc2013-evolution-ca5c50ddfeda1a3a8aaaaa7e1a42ab4c34200283.zip |
Lots of work, filled out functions, cleaned up idl to make the data more
2005-05-20 Not Zed <NotZed@Ximian.com>
* Lots of work, filled out functions, cleaned up idl to make the
data more useful, added a listener interface, etc.
svn path=/trunk/; revision=29395
Diffstat (limited to 'plugins/mail-remote/evolution-mail-store.h')
-rw-r--r-- | plugins/mail-remote/evolution-mail-store.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/mail-remote/evolution-mail-store.h b/plugins/mail-remote/evolution-mail-store.h index fef596e4f7..db42bf407f 100644 --- a/plugins/mail-remote/evolution-mail-store.h +++ b/plugins/mail-remote/evolution-mail-store.h @@ -39,6 +39,8 @@ typedef struct _EvolutionMailStoreClass EvolutionMailStoreClass; struct _EvolutionMailStore { BonoboObject parent; + + struct _EAccount *account; }; struct _EvolutionMailStoreClass { @@ -51,4 +53,7 @@ GType evolution_mail_store_get_type(void); EvolutionMailStore *evolution_mail_store_new(struct _EvolutionMailSession *s, struct _EAccount *ea); +const char *evolution_mail_store_get_name(EvolutionMailStore *); +const char *evolution_mail_store_get_uid(EvolutionMailStore *); + #endif /* _EVOLUTION_MAIL_STORE_H_ */ |