Changed return value from bool to EModRet on most hooks

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@306 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
prozacx
2005-05-15 08:27:27 +00:00
parent e8dee7aa5b
commit 44d38ec4c9
8 changed files with 239 additions and 303 deletions
+4 -4
View File
@@ -13,14 +13,14 @@ public:
return "View all of the raw traffic.";
}
virtual bool OnRaw(CString& sLine) {
virtual EModRet OnRaw(CString& sLine) {
PutModule("IRC -> [" + sLine + "]");
return false;
return CONTINUE;
}
virtual bool OnUserRaw(CString& sLine) {
virtual EModRet OnUserRaw(CString& sLine) {
PutModule("YOU -> [" + sLine + "]");
return false;
return CONTINUE;
}
};