summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-12 11:49:14 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-12 11:49:14 +0000
commitf98a8569791abd5d021285871c93e7e3d7f04446 (patch)
treecf6512e08fc1739f4f6b2989b956fa30b1c2570a /include
parent4423aaf010ce6d30ddc19989371a861c6a17c825 (diff)
Added '@' (WALLOPS) link token
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@561 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/globals.h2
-rw-r--r--include/inspircd.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/globals.h b/include/globals.h
index 4f5e035e2..4087ab00c 100644
--- a/include/globals.h
+++ b/include/globals.h
@@ -29,7 +29,7 @@ void ChanExceptSender(chanrec* Ptr, userrec* user, char* text, ...);
int common_channels(userrec *u, userrec *u2);
void WriteCommon(userrec *u, char* text, ...);
void WriteCommonExcept(userrec *u, char* text, ...);
-void WriteWallOps(userrec *source, char* text, ...);
+void WriteWallOps(userrec *source, bool local_only, char* text, ...);
int isnick(const char *n);
userrec* Find(std::string nick);
chanrec* FindChan(const char* chan);
diff --git a/include/inspircd.h b/include/inspircd.h
index 6da27ce3f..c81efb992 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -91,7 +91,7 @@ void ChanExceptSender(chanrec* Ptr, userrec* user, char* text, ...);
int common_channels(userrec *u, userrec *u2);
void WriteCommon(userrec *u, char* text, ...);
void WriteCommonExcept(userrec *u, char* text, ...);
-void WriteWallOps(userrec *source, char* text, ...);
+void WriteWallOps(userrec *source, bool local_only, char* text, ...);
int isnick(const char *n);
userrec* Find(std::string nick);
chanrec* FindChan(const char* chan);