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

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 1999  Ross Combs (rocombs@cs.nmsu.edu)
  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. #ifndef INCLUDED_ADBANNER_TYPES
  19. #define INCLUDED_ADBANNER_TYPES
  20. typedef struct adbanner
  21. #ifdef ADBANNER_INTERNAL_ACCESS
  22. {
  23.     unsigned int id;
  24.     unsigned int extensiontag;
  25.     unsigned int delay; /* in seconds */
  26.     unsigned int next; /* adid or 0 */
  27.     char const * filename;
  28.     char const * link;
  29.     char const * client;
  30. }
  31. #endif
  32. t_adbanner;
  33. #endif
  34. /*****/
  35. #ifndef JUST_NEED_TYPES
  36. #ifndef INCLUDED_ADBANNER_PROTOS
  37. #define INCLUDED_ADBANNER_PROTOS
  38. #define JUST_NEED_TYPES
  39. #include "connection.h"
  40. #undef JUST_NEED_TYPES
  41. extern t_adbanner * adbanner_pick(t_connection const * c, unsigned int prev_id);
  42. extern t_adbanner * adbanner_get(t_connection const * c, unsigned int id);
  43. extern unsigned int adbanner_get_id(t_adbanner const * ad);
  44. extern unsigned int adbanner_get_extensiontag(t_adbanner const * ad);
  45. extern char const * adbanner_get_filename(t_adbanner const * ad);
  46. extern char const * adbanner_get_link(t_adbanner const * ad);
  47. extern char const * adbanner_get_client(t_adbanner const * ad);
  48. extern int adbannerlist_create(char const * filename);
  49. extern int adbannerlist_destroy(void);
  50. #endif
  51. #endif