about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/irc.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ngircd/irc.h b/src/ngircd/irc.h
index 6653fa5e..ac1042ef 100644
--- a/src/ngircd/irc.h
+++ b/src/ngircd/irc.h
@@ -9,11 +9,14 @@
  * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
  * der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
  *
- * $Id: irc.h,v 1.8 2001/12/27 19:17:26 alex Exp $
+ * $Id: irc.h,v 1.9 2001/12/29 03:09:31 alex Exp $
  *
  * irc.h: IRC-Befehle (Header)
  *
  * $Log: irc.h,v $
+ * Revision 1.9  2001/12/29 03:09:31  alex
+ * - Neue Funktion IRC_MODE() implementiert.
+ *
  * Revision 1.8  2001/12/27 19:17:26  alex
  * - neue Befehle PRIVMSG, NOTICE, PING.
  *
@@ -67,6 +70,8 @@ GLOBAL BOOLEAN IRC_MOTD( CLIENT *Client, REQUEST *Req );
 GLOBAL BOOLEAN IRC_PRIVMSG( CLIENT *Client, REQUEST *Req );
 GLOBAL BOOLEAN IRC_NOTICE( CLIENT *Client, REQUEST *Req );
 
+GLOBAL BOOLEAN IRC_MODE( CLIENT *Client, REQUEST *Req );
+
 
 #endif