summaryrefslogtreecommitdiff
path: root/include/inspircd.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/inspircd.h')
-rw-r--r--include/inspircd.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index 1eece0532..d3c7db549 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -93,9 +93,17 @@ class serverstats
class InspIRCd
{
+
+ private:
+ void erase_factory(int j);
+ void erase_module(int j);
+ bool UnloadModule(const char* filename);
+ bool LoadModule(const char* filename);
+
public:
InspIRCd(int argc, char** argv);
int Run();
+
};
/* prototypes */
@@ -109,8 +117,6 @@ int loop_call(handlerfunc fn, char **parameters, int pcnt, userrec *u, int start
void AddWhoWas(userrec* u);
void ConnectUser(userrec *user);
userrec* ReHashNick(char* Old, char* New);
-bool LoadModule(const char* filename);
-bool UnloadModule(const char* filename);
char* ModuleError();
/* optimization tricks to save us walking the user hash */
void AddOper(userrec* user);