diff options
author | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-04 06:43:26 +0000 |
---|---|---|
committer | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-04-04 06:43:26 +0000 |
commit | 0a067563630ae108d2cca747e69adf2ead1788be (patch) | |
tree | 6a439660b9c589b13a6bb1e36b60bfdab04aca80 /include/helperfuncs.h | |
parent | ea27cd70c98339c68eb99d1fa6d9dec46d02a234 (diff) |
Add WriteOpers_NoFormat, now to remember what I wanted it for
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3824 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/helperfuncs.h')
-rw-r--r-- | include/helperfuncs.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/helperfuncs.h b/include/helperfuncs.h index 3eeed21b6..ee434fd08 100644 --- a/include/helperfuncs.h +++ b/include/helperfuncs.h @@ -38,6 +38,9 @@ void WriteChannel(chanrec* Ptr, userrec* user, char* text, ...); void WriteChannelLocal(chanrec* Ptr, userrec* user, char* text, ...); void WriteChannelWithServ(char* ServName, chanrec* Ptr, char* text, ...); void ChanExceptSender(chanrec* Ptr, userrec* user, char status, char* text, ...); +void WriteCommon(userrec *u, char* text, ...); +void WriteCommonExcept(userrec *u, char* text, ...); +void WriteOpers(const char* text, ...); void Write_NoFormat(int sock,const char *text); void WriteServ_NoFormat(int sock, const char* text); @@ -49,11 +52,9 @@ void WriteChannelWithServ_NoFormat(char* ServName, chanrec* Ptr, const char* tex void ChanExceptSender_NoFormat(chanrec* Ptr, userrec* user, char status, const char* text); void WriteCommon_NoFormat(userrec *u, const char* text); void WriteCommonExcept_NoFormat(userrec *u, const char* text); +void WriteOpers_NoFormat(const char* text); std::string GetServerDescription(char* servername); -void WriteCommon(userrec *u, char* text, ...); -void WriteCommonExcept(userrec *u, char* text, ...); -void WriteOpers(const char* text, ...); void WriteMode(const char* modes, int flags, const char* text, ...); void NoticeAll(userrec *source, bool local_only, char* text, ...); void ServerNoticeAll(char* text, ...); |