ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/include/modules.h
Revision: 8752
Committed: Tue Jan 1 11:07:01 2019 UTC (6 years, 7 months ago) by michael
Content type: text/x-chdr
File size: 2010 byte(s)
Log Message:
- Update copyright years

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 *
4 * Copyright (c) 2000-2019 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
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 struct module
31 {
32 dlink_node node;
33 char *name;
34 const char *version;
35 void *handle;
36 void (*modinit)(void);
37 void (*modexit)(void);
38 bool is_resident;
39 bool is_core;
40 };
41
42 struct module_path
43 {
44 dlink_node node;
45 char *path;
46 };
47
48
49 extern dlink_list *modules_get_list(void);
50 /* add a path */
51 extern void mod_add_path(const char *);
52 extern void modules_conf_clear(void);
53
54 /* load all modules */
55 extern void load_all_modules(bool);
56
57 /* load core modules */
58 extern void load_core_modules(bool);
59
60 /* Add this module to list of modules to be loaded from conf */
61 extern void add_conf_module(const char *);
62 /* load all modules listed in conf */
63 extern void load_conf_modules(void);
64 extern void modules_init(void);
65
66 extern bool unload_one_module(const char *, bool);
67 extern bool modules_valid_suffix(const char *);
68 extern bool load_one_module(const char *);
69 extern bool load_a_module(const char *, bool);
70 extern struct module *findmodule_byname(const char *);
71 #endif /* INCLUDED_modules_h */

Properties

Name Value
svn:eol-style native
svn:keywords Id