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

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.   * Copyright (C) 2002,2003 Mihai RUSU (dizzy@roedu.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. #ifndef INCLUDED_STORAGE_TYPES
  19. #define INCLUDED_STORAGE_TYPES
  20. #ifndef JUST_NEED_TYPES
  21. #define JUST_NEED_TYPES
  22. #include "storage_file.h"
  23. #ifdef WITH_SQL
  24. #include "storage_sql.h"
  25. #endif
  26. #undef JUST_NEED_TYPES
  27. #else
  28. #include "storage_file.h"
  29. #ifdef WITH_SQL
  30. #include "storage_sql.h"
  31. #endif
  32. #endif
  33. #define t_storage_info void
  34. typedef int (*t_read_attr_func)(const char *, const char *, void *);
  35. typedef int (*t_read_accounts_func)(t_storage_info *, void*);
  36. typedef void * (*t_read_account_func)(t_storage_info *);
  37. typedef int (*t_load_clans_func)(void*);
  38. typedef struct {
  39.     int (*init)(const char *);
  40.     int (*close)(void);
  41.     t_storage_info * (*create_account)(char const * );
  42.     t_storage_info * (*get_defacct)(void);
  43.     int (*free_info)(t_storage_info *);
  44.     int (*read_attrs)(t_storage_info *, t_read_attr_func, void *);
  45.     int (*write_attrs)(t_storage_info *, void *);
  46.     void * (*read_attr)(t_storage_info *, const char *);
  47.     int (*read_accounts)(t_read_accounts_func, void *);
  48.     void * (*read_account)(t_read_account_func, const char *);
  49.     int (*cmp_info)(t_storage_info *, t_storage_info *);
  50.     const char * (*escape_key)(const char *);
  51.     int (*load_clans)(t_load_clans_func);
  52.     int (*write_clan)(void *);
  53.     int (*remove_clan)(int);
  54.     int (*remove_clanmember)(int);
  55. } t_storage;
  56. #endif /* INCLUDED_STORAGE_TYPES */
  57. #ifndef JUST_NEED_TYPES
  58. #ifndef INCLUDED_STORAGE_PROTOS
  59. #define INCLUDED_STORAGE_PROTOS
  60. extern t_storage *storage;
  61. extern int storage_init(const char *);
  62. extern void storage_close(void);
  63. #endif /* INCLUDED_STORAGE_PROTOS */
  64. #endif /* JUST_NEED_TYPES */