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

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 2000  Onlyer (onlyer@263.net)
  3.  * Copyright (C) 2001  Ross Combs (ross@bnetd.org)
  4.  * Copyright (C) 2002 Gianluigi Tiesi (sherpya@netfarm.it)
  5.  *
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License
  8.  * as published by the Free Software Foundation; either version 2
  9.  * of the License, or (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  */
  20. #ifndef INCLUDED_VERSIONCHECK_TYPES
  21. #define INCLUDED_VERSIONCHECK_TYPES
  22. #ifdef VERSIONCHECK_INTERNAL_ACCESS
  23. typedef struct
  24. {
  25.     char const * exe;
  26.     int          time;
  27.     int  size;
  28. } t_parsed_exeinfo;
  29. #endif
  30. #ifdef VERSIONCHECK_INTERNAL_ACCESS
  31. typedef struct
  32. {
  33.     char const *       eqn;
  34.     char const *       mpqfile;
  35.     char const *       archtag;
  36.     char const *       clienttag;
  37.     char const *       versiontag;
  38.     t_parsed_exeinfo * parsed_exeinfo;
  39.     unsigned long      versionid;
  40.     unsigned long      gameversion;
  41.     unsigned long      checksum;
  42. } t_versioninfo;
  43. #endif
  44. typedef struct s_versioncheck
  45. #ifdef VERSIONCHECK_INTERNAL_ACCESS
  46. {
  47.     char const * eqn;
  48.     char const * mpqfile;
  49.     char *  versiontag;
  50. }
  51. #endif
  52. t_versioncheck;
  53. #endif
  54. #ifndef JUST_NEED_TYPES
  55. #ifndef INCLUDED_VERSIONCHECK_PROTOS
  56. #define INCLUDED_VERSIONCHECK_PROTOS
  57. extern t_versioncheck * versioncheck_create(char const * archtag, char const * clienttag);
  58. extern int versioncheck_destroy(t_versioncheck * vc);
  59. extern char const * versioncheck_get_mpqfile(t_versioncheck const * vc);
  60. extern char const * versioncheck_get_eqn(t_versioncheck const * vc);
  61. extern int versioncheck_validate(t_versioncheck * vc, char const * archtag, char const * clienttag, char const * exeinfo, unsigned long versionid, unsigned long gameversion, unsigned long checksum);
  62. extern int versioncheck_load(char const * filename);
  63. extern int versioncheck_unload(void);
  64. extern char const * versioncheck_get_versiontag(t_versioncheck const * vc);
  65. extern int versioncheck_set_versiontag(t_versioncheck * vc, char const * versiontag);
  66. #endif
  67. #endif