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

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 2000  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 JUST_NEED_TYPES
  19. #ifndef INCLUDED_CLIENT_CONNECT_PROTOS
  20. #define INCLUDED_CLIENT_CONNECT_PROTOS
  21. #define JUST_NEED_TYPES
  22. #ifdef HAVE_SYS_TYPES_H
  23. # include <sys/types.h>
  24. #endif
  25. #ifdef HAVE_SYS_SOCKET_H
  26. # include <sys/socket.h>
  27. #endif
  28. #include "compat/socket.h"
  29. #ifdef HAVE_NETINET_IN_H
  30. # include <netinet/in.h>
  31. #endif
  32. #include "compat/netinet_in.h"
  33. #ifdef HAVE_ARPA_INET_H
  34. # include <arpa/inet.h>
  35. #endif
  36. #undef JUST_NEED_TYPES
  37. // Diablo 1.09b
  38. #define CLIENT_VERSIONID_DRTL   0x0000002a
  39. #define CLIENT_GAMEVERSION_DRTL 0x01000902
  40. #define CLIENT_EXEINFO_DRTL     "Diablo.exe 05/18/01 23:10:57 767760"
  41. #define CLIENT_CHECKSUM_DRTL    0xac337ef9
  42. //plain Starcraft 1.10
  43. #define CLIENT_VERSIONID_STAR   0x000000c7
  44. #define CLIENT_GAMEVERSION_STAR 0x01010000
  45. #define CLIENT_EXEINFO_STAR     "starcraft.exe 03/27/03 04:30:39 1064960"
  46. #define CLIENT_CHECKSUM_STAR    0x67fce4c9
  47. #define CLIENT_VERSIONID_SSHR   0x000000a5 /* FIXME: wrong? */
  48. #define CLIENT_GAMEVERSION_SSHR 0x0100080a /* FIXME: wrong? */
  49. #define CLIENT_EXEINFO_SSHR     "starcraft.exe 03/08/99 22:41:50 1042432" /* FIXME: wrong */
  50. #define CLIENT_CHECKSUM_SSHR    0x12345678
  51. //Broodwar 1.10
  52. #define CLIENT_VERSIONID_SEXP   0x000000c7
  53. #define CLIENT_GAMEVERSION_SEXP 0x01010001
  54. #define CLIENT_EXEINFO_SEXP     "starcraft.exe 03/28/03 04:21:58 1064960"
  55. #define CLIENT_CHECKSUM_SEXP    0x58a2b9a0
  56. //Warcraft 2 Battle.Net Edition 2.02b
  57. #define CLIENT_VERSIONID_W2BN   0x0000004f
  58. #define CLIENT_GAMEVERSION_W2BN 0x02000201
  59. #define CLIENT_EXEINFO_W2BN     "Warcraft II BNE.exe 05/21/01 21:52:22 712704"
  60. #define CLIENT_CHECKSUM_W2BN    0xf144a97e
  61. //Diablo 2 1.10
  62. #define CLIENT_VERSIONID_D2DV   0x0000000a
  63. #define CLIENT_GAMEVERSION_D2DV 0x01000a00
  64. #define CLIENT_EXEINFO_D2DV     "Game.exe 10/13/03 08:34:46 1194761"
  65. #define CLIENT_CHECKSUM_D2DV    0x3132dda6
  66. //Diable 2 Expansion 1.10
  67. #define CLIENT_VERSIONID_D2XP   0x0000000a
  68. #define CLIENT_GAMEVERSION_D2XP 0x01000a00
  69. #define CLIENT_EXEINFO_D2XP     "Game.exe 10/13/03 08:35:30 1198857"
  70. #define CLIENT_CHECKSUM_D2XP    0x210126ec
  71. //Warcraft 3 1.13b
  72. #define CLIENT_VERSIONID_WAR3   0x0000000d
  73. #define CLIENT_GAMEVERSION_WAR3 0x01000D95
  74. #define CLIENT_EXEINFO_WAR3     "War3.exe 12/18/03 00:53:06 1568211"
  75. #define CLIENT_CHECKSUM_WAR3    0x0bb5600d
  76. #define CLIENT_COUNTRYINFO_109_PROTOCOL            0x00000000
  77. #define CLIENT_COUNTRYINFO_109_VERSIONID_D2DV      0x00000009
  78. #define CLIENT_COUNTRYINFO_109_GAMELANG            0x00000000
  79. #define CLIENT_COUNTRYINFO_109_LOCALIP             0x00000000
  80. #define CLIENT_COUNTRYINFO_109_LANGID_USENGLISH    0x00000409
  81. #define CLIENT_COUNTRYINFO_109_LANGSTR_USENGLISH   "ENU"
  82. #define CLIENT_COUNTRYINFO_109_COUNTRYNAME_USA     "United States"
  83. extern int client_connect(char const * progname, char const * servname, unsigned short servport, char const * cdowner, char const * cdkey, char const * clienttag, struct sockaddr_in * saddr, unsigned int * sessionkey, unsigned int * sessionnum, char const * archtag);
  84. #endif
  85. #endif