]> code.citadel.org Git - citadel.git/blobdiff - libcitadel/lib/libcitadel.c
Remove preprocessor tests for OpenSSL. It's a requirement.
[citadel.git] / libcitadel / lib / libcitadel.c
index fd64fa99d61dbc1c744560ecc369832d469e424d..f9946f1e6f511ff2f30f5d95bcc39883f03ee185 100644 (file)
@@ -1,8 +1,10 @@
-/*
- * $Id$
- *
- */
-
+//
+// Main stuff for libcitadel
+//
+// Copyright (c) 1987-2013 by the citadel.org team
+//
+// This program is open source software.  Use, duplication, or disclosure
+// is subject to the terms of the GNU General Public License, version 3.
 
 #include <stdlib.h>
 #include <unistd.h>
 #include <sys/stat.h>
 #include <errno.h>
 #include "libcitadel.h"
+#include "xdgmime/xdgmime.h"
+#include "libcitadellocal.h"
+
+ConstStr RoomNetCfgStrs[maxRoomNetCfg] = {
+       {HKEY(strof(subpending))},
+       {HKEY(strof(unsubpending))},
+       {HKEY(strof(lastsent))}, /* Server internal use only */
+       {HKEY(strof(ignet_push_share))},
+       {HKEY(strof(listrecp))},
+       {HKEY(strof(digestrecp))},
+       {HKEY(strof(pop3client))},
+       {HKEY(strof(rssclient))},
+       {HKEY(strof(participate))}
+// No, not one of..    {HKEY(strof(maxRoomNetCfg))}
+};
 
+extern int EnableSplice;
+extern int ZLibCompressionRatio;
 
 char *libcitadel_version_string(void) {
-       return "$Id$";
+       return "libcitadel(unnumbered)";
+}
+
+int libcitadel_version_number(void) {
+       return LIBCITADEL_VERSION_NUMBER;
+}
+
+void ShutDownLibCitadel(void) {
+       ShutDownLibCitadelMime();
+       WildFireShutdown();
+       xdg_mime_shutdown();
 }