diff options
Diffstat (limited to 'mail/mail-config.h')
-rw-r--r-- | mail/mail-config.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mail/mail-config.h b/mail/mail-config.h index 10c403389f..896b914249 100644 --- a/mail/mail-config.h +++ b/mail/mail-config.h @@ -26,6 +26,10 @@ #include <glib.h> #include <camel/camel.h> +#include <bonobo/bonobo-xobject.h> + +#include "Mail.h" + #ifdef __cplusplus extern "C" { #pragma } @@ -139,6 +143,20 @@ char *mail_config_folder_to_cachename (CamelFolder *folder, const char *prefix); gboolean mail_config_check_service (const char *url, CamelProviderType type, GList **authtypes); +/* For the bonobo object */ +typedef struct _EvolutionMailConfig EvolutionMailConfig; +typedef struct _EvolutionMailConfigClass EvolutionMailConfigClass; + +struct _EvolutionMailConfig { + BonoboXObject parent; +}; + +struct _EvolutionMailConfigClass { + BonoboXObjectClass parent_class; + + POA_GNOME_Evolution_MailConfig__epv epv; +}; + #ifdef __cplusplus } #endif /* __cplusplus */ |