irc.h
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 2001  Marco Ziech (mmz@gmx.net)
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. /*****/
  19. #ifndef JUST_NEED_TYPES
  20. #ifndef INCLUDED_IRC_PROTOS
  21. #define INCLUDED_IRC_PROTOS
  22. #define JUST_NEED_TYPES
  23. #include "connection.h"
  24. #undef JUST_NEED_TYPES
  25. extern int irc_send_cmd(t_connection * conn, char const * command, char const * params);
  26. extern int irc_send(t_connection * conn, int code, char const * params);
  27. extern int irc_send_ping(t_connection * conn);
  28. extern int irc_send_pong(t_connection * conn, char const * params);
  29. extern int irc_authenticate(t_connection * conn, char const * passhash);
  30. extern int irc_welcome(t_connection * conn);
  31. extern char const * irc_convert_channel(t_channel const * channel);
  32. extern char const * irc_convert_ircname(char const * pircname);
  33. extern char ** irc_get_listelems(char * list);
  34. extern int irc_unget_listelems(char ** elems);
  35. extern char ** irc_get_paramelems(char * list);
  36. extern int irc_unget_paramelems(char ** elems);
  37. extern int irc_message_postformat(t_packet * packet, t_connection const * dest);
  38. extern int irc_message_format(t_packet * packet, t_message_type type, t_connection * me, t_connection * dst, char const * text, unsigned int dstflags);
  39. extern int irc_send_rpl_namreply(t_connection * c, t_channel const * channel);
  40. extern int irc_who(t_connection * c, char const * name);
  41. #endif
  42. #endif