Removed path arg in LoadModule functions, it was not being used

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@70 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
prozacx
2005-04-03 05:40:15 +00:00
parent 933f1cc616
commit 263295a1ae
+2 -2
View File
@@ -166,9 +166,9 @@ public:
virtual bool OnChanNotice(const CNick& Nick, const CChan& Channel, string& sMessage);
CModule* FindModule(const string& sModule);
bool LoadModule(const string& sModule, const string& sArgs, CUser* pUser, const string& sPath, string& sRetMsg);
bool LoadModule(const string& sModule, const string& sArgs, CUser* pUser, string& sRetMsg);
bool UnloadModule(const string& sModule, string& sRetMsg);
bool ReloadModule(const string& sModule, const string& sArgs, CUser* pUser, const string& sPath, string& sRetMsg);
bool ReloadModule(const string& sModule, const string& sArgs, CUser* pUser, string& sRetMsg);
};
#endif // !_MODULES_H