diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-14 13:27:40 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-14 13:27:40 +0000 |
commit | 580632d29ae6421afe7b2d4bd97323ace3bbdced (patch) | |
tree | dbe5e7414a9d1d77b8bba0ed8e6f8d9c720fb175 /src/modules.cpp | |
parent | f5fbaa2ab7c5e83408d57343767e0ae255a37452 (diff) |
Added OnUserKick and OnUserPreKick
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1086 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules.cpp')
-rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 12dccdade..02221f1a6 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -335,6 +335,8 @@ void Module::OnSendList(userrec* user, chanrec* channel, char mode) { }; int Module::OnPreCommand(std::string command, char **parameters, int pcnt, userrec *user) { return 0; }; bool Module::OnCheckReady(userrec* user) { return true; }; void Module::OnUserRegister(userrec* user) { }; +int Module::OnUserPreKick(userrec* source, userrec* user, chanrec* chan, std::string reason) { return 0; }; +void Module::OnUserKick(userrec* source, userrec* user, chanrec* chan, std::string reason) { }; // server is a wrapper class that provides methods to all of the C-style // exports in the core |