diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-03-14 07:31:32 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-03-14 07:31:32 +0800 |
commit | e31313b07f2f57e3fe8b3340ae410a7a13e71607 (patch) | |
tree | abcf8f0fd64769ac45eb6699ed9f36e3d6226c46 /camel/camel.h | |
parent | 2f96c6db974180f9a9e88b89386e599edb9b21d6 (diff) | |
download | gsoc2013-evolution-e31313b07f2f57e3fe8b3340ae410a7a13e71607.tar gsoc2013-evolution-e31313b07f2f57e3fe8b3340ae410a7a13e71607.tar.gz gsoc2013-evolution-e31313b07f2f57e3fe8b3340ae410a7a13e71607.tar.bz2 gsoc2013-evolution-e31313b07f2f57e3fe8b3340ae410a7a13e71607.tar.lz gsoc2013-evolution-e31313b07f2f57e3fe8b3340ae410a7a13e71607.tar.xz gsoc2013-evolution-e31313b07f2f57e3fe8b3340ae410a7a13e71607.tar.zst gsoc2013-evolution-e31313b07f2f57e3fe8b3340ae410a7a13e71607.zip |
Since all of the Mozilla libs (including NSPR and NSS) correctly handle
2001-03-13 Jeffrey Stedfast <fejj@ximian.com>
* camel.c (camel_init): Since all of the Mozilla libs (including
NSPR and NSS) correctly handle reinitializations, we might as well
init both NSPR and NSS in camel_init so we can be sure of that
these libs have been initialized.
(camel_shutdown): New function to call the NSS cleanup stuff.
svn path=/trunk/; revision=8690
Diffstat (limited to 'camel/camel.h')
-rw-r--r-- | camel/camel.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/camel/camel.h b/camel/camel.h index 6de1ae6462..fc50f3eb35 100644 --- a/camel/camel.h +++ b/camel/camel.h @@ -68,7 +68,9 @@ extern "C" { #include <camel/hash-table-utils.h> #include <camel/string-utils.h> -gint camel_init (void); +gint camel_init (const char *certdb); + +void camel_shutdown (void); #ifdef __cplusplus } |