diff options
| author | Alexander Barton <alex@barton.de> | 2001-12-29 03:09:31 +0000 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2001-12-29 03:09:31 +0000 |
| commit | b61087bab5676050882c861f2607e91be9ed266c (patch) | |
| tree | 15b29848b25376653c8700d7e192f4dc7af96673 /src | |
| parent | 363a03b84138b823167458c54edbf042d9a70dc3 (diff) | |
| download | ngircd-b61087bab5676050882c861f2607e91be9ed266c.tar.gz ngircd-b61087bab5676050882c861f2607e91be9ed266c.zip | |
- Neue Funktion IRC_MODE() implementiert.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/irc.h | 7 |
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 |