diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2004-06-19 05:08:05 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-06-19 05:08:05 +0800 |
commit | feab0c308a0f5c9144817390f83332ad72312000 (patch) | |
tree | ec33fd94bb696c9d57553d879a9cdcc6c3fdd509 /camel/camel.h | |
parent | 3b512ca3c8bed0ea497a8e30046362b583754e16 (diff) | |
download | gsoc2013-evolution-feab0c308a0f5c9144817390f83332ad72312000.tar.gz gsoc2013-evolution-feab0c308a0f5c9144817390f83332ad72312000.tar.zst gsoc2013-evolution-feab0c308a0f5c9144817390f83332ad72312000.zip |
Call camel_mime_utils_shutdown() and camel_operation_shutdown().
2004-06-18 Jeffrey Stedfast <fejj@novell.com>
* camel.c (camel_shutdown): Call camel_mime_utils_shutdown() and
camel_operation_shutdown().
(camel_init): Don't register camel_shutdown() as an atexit
handler.
* camel-operation.c (camel_operation_shutdown): New function.
* camel-mime-utils.c (camel_mime_utils_shutdown): New function to
clean up the compiled regexes.
svn path=/trunk/; revision=26429
Diffstat (limited to 'camel/camel.h')
-rw-r--r-- | camel/camel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/camel.h b/camel/camel.h index c61ca932b8..edc1e313b3 100644 --- a/camel/camel.h +++ b/camel/camel.h @@ -87,7 +87,8 @@ extern "C" { #include <camel/camel-url.h> #include <camel/camel-string-utils.h> -gint camel_init (const char *certdb_dir, gboolean nss_init); +int camel_init (const char *certdb_dir, gboolean nss_init); +void camel_shutdown (void); #ifdef __cplusplus } |