diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/commands.h | 1 | ||||
-rw-r--r-- | include/inspircd.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/commands.h b/include/commands.h index 1242671b3..aa6fcf206 100644 --- a/include/commands.h +++ b/include/commands.h @@ -79,6 +79,7 @@ void handle_zline(char **parameters, int pcnt, userrec *user); void handle_qline(char **parameters, int pcnt, userrec *user); void handle_eline(char **parameters, int pcnt, userrec *user); void handle_server(char **parameters, int pcnt, userrec *user); +void handle_loadmodule(char **parameters, int pcnt, userrec *user); /** Special functions for processing server to server traffic */ diff --git a/include/inspircd.h b/include/inspircd.h index 2f16fbc82..e54da779b 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -158,7 +158,8 @@ char islast(const char* s); long map_count(const char* s); userrec* ReHashNick(char* Old, char* New); long GetMaxBans(char* name); - +bool LoadModule(const char* filename); +char* ModuleError(); // mesh network functions |