irc-write.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * ngIRCd -- The Next Generation IRC Daemon
  3. * Copyright (c)2001-2008 Alexander Barton (alex@barton.de)
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. * Please read the file COPYING, README and AUTHORS for more information.
  10. *
  11. * Sending IRC commands over the network (header)
  12. */
  13. #ifndef __irc_write_h__
  14. #define __irc_write_h__
  15. GLOBAL bool IRC_WriteStrClient PARAMS((CLIENT *Client, const char *Format, ...));
  16. GLOBAL bool IRC_WriteStrClientPrefix PARAMS((CLIENT *Client, CLIENT *Prefix,
  17. const char *Format, ...));
  18. GLOBAL bool IRC_WriteStrChannel PARAMS((CLIENT *Client, CHANNEL *Chan,
  19. bool Remote, const char *Format, ...));
  20. GLOBAL bool IRC_WriteStrChannelPrefix PARAMS((CLIENT *Client, CHANNEL *Chan,
  21. CLIENT *Prefix, bool Remote, const char *Format, ...));
  22. GLOBAL void IRC_WriteStrServers PARAMS((CLIENT *ExceptOf,
  23. const char *Format, ...));
  24. GLOBAL void IRC_WriteStrServersPrefix PARAMS((CLIENT *ExceptOf, CLIENT *Prefix,
  25. const char *Format, ...));
  26. GLOBAL void IRC_WriteStrServersPrefixFlag PARAMS((CLIENT *ExceptOf,
  27. CLIENT *Prefix, char Flag, const char *Format, ...));
  28. GLOBAL void IRC_WriteStrServersPrefixFlag_CB PARAMS((CLIENT *ExceptOf,
  29. CLIENT *Prefix, char Flag,
  30. void (*callback)(CLIENT *, CLIENT *, void *), void *cb_data));
  31. GLOBAL bool IRC_WriteStrRelatedPrefix PARAMS((CLIENT *Client, CLIENT *Prefix,
  32. bool Remote, const char *Format, ...));
  33. GLOBAL void IRC_SendWallops PARAMS((CLIENT *Client, CLIENT *From,
  34. const char *Format, ...));
  35. GLOBAL void IRC_SetPenalty PARAMS((CLIENT *Client, time_t Seconds));
  36. #endif
  37. /* -eof- */