summaryrefslogtreecommitdiff
path: root/include/inspircd.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-10-28 18:41:34 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-10-28 18:41:34 +0000
commit94db28f9b3667d2424d190a92c231e2f9ffe6f27 (patch)
treec89a4eba429be77320c6581ed942b55b0732d66e /include/inspircd.h
parentb7c7e603e986e1191f3763634bf1ca78901a5c28 (diff)
Add 'dest' parameter to OnWhoisLine, contains the user being whois'ed (we need this for +H and probably the stuff w00t is doing too)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5573 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/inspircd.h')
-rw-r--r--include/inspircd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index 1aead5d5e..3a752e21c 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -998,9 +998,9 @@ class InspIRCd : public classbase
*/
void Log(int level, const std::string &text);
- void SendWhoisLine(userrec* user, int numeric, const std::string &text);
+ void SendWhoisLine(userrec* user, userrec* dest, int numeric, const std::string &text);
- void SendWhoisLine(userrec* user, int numeric, const char* format, ...);
+ void SendWhoisLine(userrec* user, userrec* dest, int numeric, const char* format, ...);
/** Begin execution of the server.
* NOTE: this function NEVER returns. Internally,