Branch data Line data Source code
1 : : /*
2 : : * Main stuff for libcitadel
3 : : */
4 : :
5 : : #include <stdlib.h>
6 : : #include <unistd.h>
7 : : #include <stdio.h>
8 : : #include <signal.h>
9 : : #include <sys/types.h>
10 : : #include <ctype.h>
11 : : #include <string.h>
12 : : #include <sys/stat.h>
13 : : #include <errno.h>
14 : : #include "libcitadel.h"
15 : : #include "xdgmime/xdgmime.h"
16 : : #include "libcitadellocal.h"
17 : :
18 : : ConstStr RoomNetCfgStrs[maxRoomNetCfg] = {
19 : : {HKEY(strof(subpending))},
20 : : {HKEY(strof(unsubpending))},
21 : : {HKEY(strof(lastsent))}, /* Server internal use only */
22 : : {HKEY(strof(ignet_push_share))},
23 : : {HKEY(strof(listrecp))},
24 : : {HKEY(strof(digestrecp))},
25 : : {HKEY(strof(pop3client))},
26 : : {HKEY(strof(rssclient))},
27 : : {HKEY(strof(participate))}
28 : : // No, not one of.. {HKEY(strof(maxRoomNetCfg))}
29 : : };
30 : :
31 : :
32 : :
33 : :
34 : : extern int BaseStrBufSize;
35 : 1 : char *libcitadel_version_string(void) {
36 : 1 : return "libcitadel(unnumbered)";
37 : : }
38 : :
39 : 1 : int libcitadel_version_number(void) {
40 : 1 : return LIBCITADEL_VERSION_NUMBER;
41 : : }
42 : :
43 : 220 : void StartLibCitadel(size_t basesize)
44 : : {
45 : 220 : BaseStrBufSize = basesize;
46 : 220 : }
47 : :
48 : 26 : void ShutDownLibCitadel(void)
49 : : {
50 : 26 : ShutDownLibCitadelMime();
51 : 26 : WildFireShutdown();
52 : 26 : xdg_mime_shutdown();
53 : 26 : }
|