1 |
/* |
2 |
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
3 |
* |
4 |
* Copyright (c) 2000-2014 ircd-hybrid development team |
5 |
* |
6 |
* This program is free software; you can redistribute it and/or modify |
7 |
* it under the terms of the GNU General Public License as published by |
8 |
* the Free Software Foundation; either version 2 of the License, or |
9 |
* (at your option) any later version. |
10 |
* |
11 |
* This program is distributed in the hope that it will be useful, |
12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
* GNU General Public License for more details. |
15 |
* |
16 |
* You should have received a copy of the GNU General Public License |
17 |
* along with this program; if not, write to the Free Software |
18 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 |
19 |
* USA |
20 |
*/ |
21 |
|
22 |
/*! \file modules.h |
23 |
* \brief A header for the modules functions. |
24 |
* \version $Id$ |
25 |
*/ |
26 |
|
27 |
#ifndef INCLUDED_modules_h |
28 |
#define INCLUDED_modules_h |
29 |
|
30 |
enum |
31 |
{ |
32 |
MODULE_FLAG_CORE = 1 << 0, |
33 |
MODULE_FLAG_NOUNLOAD = 1 << 1 |
34 |
}; |
35 |
|
36 |
struct module |
37 |
{ |
38 |
dlink_node node; |
39 |
char *name; |
40 |
const char *version; |
41 |
void *handle; |
42 |
void (*modinit)(void); |
43 |
void (*modexit)(void); |
44 |
unsigned int flags; |
45 |
}; |
46 |
|
47 |
struct module_path |
48 |
{ |
49 |
dlink_node node; |
50 |
char path[HYB_PATH_MAX + 1]; |
51 |
}; |
52 |
|
53 |
|
54 |
extern dlink_list *modules_get_list(void); |
55 |
/* add a path */ |
56 |
extern void mod_add_path(const char *); |
57 |
extern void mod_clear_paths(void); |
58 |
|
59 |
/* load all modules */ |
60 |
extern void load_all_modules(int); |
61 |
|
62 |
/* load core modules */ |
63 |
extern void load_core_modules(int); |
64 |
|
65 |
/* Add this module to list of modules to be loaded from conf */ |
66 |
extern void add_conf_module(const char *); |
67 |
/* load all modules listed in conf */ |
68 |
extern void load_conf_modules(void); |
69 |
extern void modules_init(void); |
70 |
|
71 |
extern int unload_one_module(const char *, int); |
72 |
extern int modules_valid_suffix(const char *); |
73 |
extern int load_one_module(const char *); |
74 |
extern int load_a_module(const char *, int); |
75 |
extern struct module *findmodule_byname(const char *); |
76 |
#endif /* INCLUDED_modules_h */ |