diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-02-23 15:13:17 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-02-23 15:13:17 +0800 |
commit | 7658347dd9701fc24024792761edbe58c7c350e0 (patch) | |
tree | cd802bf4d118aee92e1850a7de8d748b9e7da07b /mail/mail-importer.h | |
parent | c2d5b54e94d4a02a4032b5705d23234a236afd53 (diff) | |
download | gsoc2013-evolution-7658347dd9701fc24024792761edbe58c7c350e0.tar.gz gsoc2013-evolution-7658347dd9701fc24024792761edbe58c7c350e0.tar.zst gsoc2013-evolution-7658347dd9701fc24024792761edbe58c7c350e0.zip |
New stuff for the importer to create a new folder
svn path=/trunk/; revision=8365
Diffstat (limited to 'mail/mail-importer.h')
-rw-r--r-- | mail/mail-importer.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mail/mail-importer.h b/mail/mail-importer.h index cc9c189eef..e50288c6c0 100644 --- a/mail/mail-importer.h +++ b/mail/mail-importer.h @@ -27,6 +27,7 @@ #include <camel/camel-folder.h> #include <camel/camel-stream-mem.h> #include <camel/camel-exception.h> +#include <evolution-shell-client.h> typedef struct _MailImporter MailImporter; struct _MailImporter { @@ -36,8 +37,12 @@ struct _MailImporter { gboolean frozen; /* Is folder frozen? */ }; -void mail_importer_init (void); +void mail_importer_init (EvolutionShellClient *client); void mail_importer_add_line (MailImporter *importer, const char *str, gboolean finished); +void mail_importer_create_folder (const char *parent_path, + const char *name, + const char *type, + const char *description); #endif |