diff options
author | bertrand <Bertrand.Guiheneuf@aful.org> | 1999-08-12 06:34:09 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-08-12 06:34:09 +0800 |
commit | a478ee7e9d44ea7947b2dc51fcf5d7f09735ee52 (patch) | |
tree | 16013fe0bf49a83f311bd25c6c603d1a29e5277a /camel/camel.h | |
parent | 33ffe9aadcef483a4900cc65fc9e840220951e3c (diff) | |
download | gsoc2013-evolution-a478ee7e9d44ea7947b2dc51fcf5d7f09735ee52.tar gsoc2013-evolution-a478ee7e9d44ea7947b2dc51fcf5d7f09735ee52.tar.gz gsoc2013-evolution-a478ee7e9d44ea7947b2dc51fcf5d7f09735ee52.tar.bz2 gsoc2013-evolution-a478ee7e9d44ea7947b2dc51fcf5d7f09735ee52.tar.lz gsoc2013-evolution-a478ee7e9d44ea7947b2dc51fcf5d7f09735ee52.tar.xz gsoc2013-evolution-a478ee7e9d44ea7947b2dc51fcf5d7f09735ee52.tar.zst gsoc2013-evolution-a478ee7e9d44ea7947b2dc51fcf5d7f09735ee52.zip |
new file. MH provider registration stuff.
1999-08-12 bertrand <Bertrand.Guiheneuf@aful.org>
* camel/providers/MH/camel-mh-provider.c:
new file. MH provider registration stuff.
* camel/camel-provider.c (camel_provider_register_as_module):
load a provider from a shared object (plugin).
(camel_provider_register): register a provider
"by hand". Used for statically defined providers.
* tests/test7.c: new test.
tests providers loading framework.
Providers modules loading Works !!! :))))
svn path=/trunk/; revision=1105
Diffstat (limited to 'camel/camel.h')
-rw-r--r-- | camel/camel.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/camel/camel.h b/camel/camel.h index c0548f5e10..33bd0bdd92 100644 --- a/camel/camel.h +++ b/camel/camel.h @@ -33,6 +33,28 @@ extern "C" { #include <gtk/gtk.h> #include <config.h> #include <camel/data-wrapper-repository.h> +#include <camel/data-wrapper-repository.h> +#include <camel/camel-log.h> +#include <camel/camel-data-wrapper.h> +#include <camel-simple-data-wrapper.h> +#include <camel-folder.h> +#include <camel-mime-body-part.h> +#include <camel-mime-message.h> +#include <camel-mime-part.h> +#include <camel-multipart.h> +#include <camel-provider.h> +#include <camel-service.h> +#include <camel-session.h> +#include <camel-store.h> +#include <camel-stream.h> +#include <camel-stream-fs.h> +#include <camel-stream-mem.h> +#include <data-wrapper-repository.h> +#include <gmime-content-field.h> +#include <gmime-utils.h> +#include <gstring-util.h> +#include <string-utils.h> +#include <url-util.h> gint camel_init (); |