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

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * This program is free software; you can redistribute it and/or
  3.  * modify it under the terms of the GNU General Public License
  4.  * as published by the Free Software Foundation; either version 2
  5.  * of the License, or (at your option) any later version.
  6.  *
  7.  * This program is distributed in the hope that it will be useful,
  8.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.  * GNU General Public License for more details.
  11.  *
  12.  * You should have received a copy of the GNU General Public License
  13.  * along with this program; if not, write to the Free Software
  14.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  15.  */
  16. #ifndef INCLUDED_TOPIC_TYPES
  17. #define INCLUDED_TOPIC_TYPES
  18. #ifdef TOPIC_INTERNAL_ACCESS
  19. #ifdef JUST_NEED_TYPES
  20. # include <stdio.h>
  21. # include "common/list.h"
  22. #else
  23. # define JUST_NEED_TYPES
  24. # include <stdio.h>
  25. # include "common/list.h"
  26. # undef JUST_NEED_TYPES
  27. #endif
  28. #endif
  29. typedef struct topic
  30. #ifdef TOPIC_INTERNAL_ACCESS
  31. {
  32.   char *   channel_name;
  33.   char *   topic;
  34.   int      save;
  35. }
  36. #endif
  37. t_topic;
  38. #define DO_SAVE_TOPIC 1
  39. #define NO_SAVE_TOPIC 0
  40. #endif
  41. #ifndef JUST_NEED_TYPES
  42. #ifndef INCLUDED_TOPIC_PROTOS
  43. #define INCLUDED_TOPIC_PROTOS
  44. #define JUST_NEED_TYPES
  45. #include "common/list.h"
  46. #undef JUST_NEED_TYPES
  47. int    topiclist_load(char const * topicfile);
  48. int    topiclist_unload(void);
  49. int    channel_set_topic(char const * channel_name, char const * topic_text, int do_save);
  50. char * channel_get_topic(char const * channel_name);
  51. #endif
  52. #endif