New silcconfig library and server parser. Merged silc-newconfig-final.patch.
[silc.git] / apps / irssi / src / fe-common / silc / fe-common-silc.c
1 /*
2
3   fe-common-silc.c
4
5   Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
6
7   Copyright (C) 2001 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; either version 2 of the License, or
12   (at your option) any later version.
13   
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19 */
20
21 #include "module.h"
22 #include "module-formats.h"
23 #include "signals.h"
24 #include "themes.h"
25
26 void fe_silc_channels_init(void);
27 void fe_silc_channels_deinit(void);
28
29 void fe_silc_modules_init(void);
30 void fe_silc_modules_deinit(void);
31
32 void fe_common_silc_init(void)
33 {
34   theme_register(fecommon_silc_formats);
35
36   fe_silc_channels_init();
37   fe_silc_modules_init();
38 }
39
40 void fe_common_silc_deinit(void)
41 {
42   fe_silc_modules_deinit();
43   fe_silc_channels_deinit();
44
45   theme_unregister();
46 }
47
48 void fe_common_silc_finish_init(void)
49 {
50 }