client-cap.h 1013 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * ngIRCd -- The Next Generation IRC Daemon
  3. * Copyright (c)2001-2012 Alexander Barton (alex@barton.de) and Contributors.
  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. #ifndef __client_cap_h__
  12. #define __client_cap_h__
  13. /**
  14. * @file
  15. * Functions to deal with IRC Capabilities (header)
  16. */
  17. #define CLIENT_CAP_PENDING 1 /* Capability negotiation pending */
  18. #define CLIENT_CAP_SUPPORTED 2 /* Client supports IRC capabilities */
  19. #define CLIENT_CAP_MULTI_PREFIX 4 /* multi-prefix */
  20. GLOBAL int Client_Cap PARAMS((CLIENT *Client));
  21. GLOBAL void Client_CapSet PARAMS((CLIENT *Client, int Cap));
  22. GLOBAL void Client_CapAdd PARAMS((CLIENT *Client, int Cap));
  23. GLOBAL void Client_CapDel PARAMS((CLIENT *Client, int Cap));
  24. #endif