少年修仙传客户端基础资源
hch
2024-04-01 d01413b00ef631ac20347716b23818b0b811f65f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
 * NOTE: This file is for internal use only.
 *       Do not use these #defines in your own program!
 */
 
/* Namespace for Google classes */
#define GOOGLE_NAMESPACE  ::google
 
/* Stops putting the code inside the Google namespace */
#define _END_GOOGLE_NAMESPACE_  }
 
/* Puts following code inside the Google namespace */
#define _START_GOOGLE_NAMESPACE_   namespace google {
 
/***************************/
/* Windows build platforms */
/***************************/
#if defined(_MSC_VER)
 
#if (_MSC_VER >= 1800 )
 
/* the location of the header defining hash functions */
#define HASH_FUN_H  <unordered_map>
 
#else /* Earlier than VSC++ 2013 */ 
 
/* the location of the header defining hash functions */
#define HASH_FUN_H  <hash_map>
 
#endif
 
/* the namespace of the hash<> function */
#define HASH_NAMESPACE  stdext
 
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
 
/* Define to 1 if the system has the type `long long'. */
#define HAVE_LONG_LONG  1
 
/* Define to 1 if you have the `memcpy' function. */
#define HAVE_MEMCPY  1
 
/* Define to 1 if you have the <stdint.h> header file. */
#undef HAVE_STDINT_H
 
/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H  1
 
/* Define to 1 if the system has the type `uint16_t'. */
#undef HAVE_UINT16_T
 
/* Define to 1 if the system has the type `u_int16_t'. */
#undef HAVE_U_INT16_T
 
/* Define to 1 if the system has the type `__uint16'. */
#define HAVE___UINT16  1
 
/* The system-provided hash function including the namespace. */
#define SPARSEHASH_HASH  HASH_NAMESPACE::hash_compare
 
/* The system-provided hash function, in namespace HASH_NAMESPACE. */
#define SPARSEHASH_HASH_NO_NAMESPACE  hash_compare
 
/*************************/
/* POSIX build platforms */
/*************************/
#else
 
/* the location of the header defining hash functions */
#define HASH_FUN_H <functional>
 
/* the namespace of the hash<> function */
#define HASH_NAMESPACE std
 
/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1
 
/* Define to 1 if the system has the type `long long'. */
#define HAVE_LONG_LONG 1
 
/* Define to 1 if you have the `memcpy' function. */
#define HAVE_MEMCPY 1
 
/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1
 
/* Define to 1 if you have the <sys/types.h> header file. */
#define HAVE_SYS_TYPES_H 1
 
/* Define to 1 if the system has the type `uint16_t'. */
#define HAVE_UINT16_T 1
 
/* Define to 1 if the system has the type `u_int16_t'. */
#define HAVE_U_INT16_T 1
 
/* Define to 1 if the system has the type `__uint16'. */
/* #undef HAVE___UINT16 */
 
/* The system-provided hash function including the namespace. */
#define SPARSEHASH_HASH HASH_NAMESPACE::hash
 
#endif