Blame view

ios/cocos2d/cocos/platform/win32/CCStdC-win32.h 3.67 KB
520389e3   xiaoyu   接入cocos源码,编译未通过,继续修改
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
  /****************************************************************************
  Copyright (c) 2010-2012 cocos2d-x.org
  Copyright (c) 2013-2016 Chukong Technologies Inc.
  Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
  
  http://www.cocos2d-x.org
  
  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:
  
  The above copyright notice and this permission notice shall be included in
  all copies or substantial portions of the Software.
  
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  THE SOFTWARE.
  ****************************************************************************/
  #pragma once
  
  #include <BaseTsd.h>
  #ifndef __SSIZE_T
  #define __SSIZE_T
  typedef SSIZE_T ssize_t;
  #endif // __SSIZE_T
  
  #include "platform/CCPlatformMacros.h"
  #include <float.h>
  
  // for math.h on win32 platform
  #ifndef __MINGW32__
  
  #if !defined(_USE_MATH_DEFINES)
      #define _USE_MATH_DEFINES       // make M_PI can be use
  #endif
  
  #if _MSC_VER < 1800
  #if !defined(isnan)
      #define isnan   _isnan
  #endif
  #endif
  
  #if _MSC_VER < 1900
  #ifndef snprintf
  #define snprintf _snprintf
  #endif
  #endif
  
  #endif // __MINGW32__
  
  #include <math.h>
  #include <string.h>
  #include <stdarg.h>
  #include <stdio.h>
  #include <stdlib.h>
  #include <time.h>
  
  #ifndef M_PI
    #define M_PI      3.14159265358
  #endif
  #ifndef M_PI_2
    #define M_PI_2    1.57079632679
  #endif
  // for MIN MAX and sys/time.h on win32 platform
  #ifdef __MINGW32__
  #include <sys/time.h>
  #endif // __MINGW32__
  
  #ifndef MIN
  #define MIN(x,y) (((x) > (y)) ? (y) : (x))
  #endif  // MIN
  
  #ifndef MAX
  #define MAX(x,y) (((x) < (y)) ? (y) : (x))
  #endif  // MAX
  
  
  #if _MSC_VER >= 1600 || defined(__MINGW32__)
      #include <stdint.h>
  #else
      #include "platform/win32/compat/stdint.h"
  #endif
  
  #define _WINSOCKAPI_
  #ifndef NOMINMAX
    #define NOMINMAX
  #endif
  
  #ifndef __MINGW32__
  
  #include <WinSock2.h>
  // Structure timeval has define in winsock.h, include windows.h for it.
  #include <Windows.h>
  
  NS_CC_BEGIN
  
  struct timezone
  {
      int tz_minuteswest;
      int tz_dsttime;
  };
  
  int CC_DLL gettimeofday(struct timeval *, struct timezone *);
  
  NS_CC_END
  
  #else
  
  #undef _WINSOCKAPI_
  #include <winsock2.h>
  #include <Windows.h>
  
  // Conflicted with math.h isnan
  #include <cmath>
  using std::isnan;
  
  inline int vsnprintf_s(char *buffer, size_t sizeOfBuffer, size_t count,
                   const char *format, va_list argptr) {
    return vsnprintf(buffer, sizeOfBuffer, format, argptr);
  }
  
  #ifndef __clang__
  inline errno_t strcpy_s(char *strDestination, size_t numberOfElements,
          const char *strSource) {
      strcpy(strDestination, strSource);
      return 0;
  }
  #endif
  #endif // __MINGW32__
  
  // Conflicted with ParticleSystem::PositionType::RELATIVE, so we need to undef it.
  #ifdef RELATIVE
  #undef RELATIVE
  #endif
  
  // Conflicted with CCBReader::SizeType::RELATIVE and CCBReader::ScaleType::RELATIVE, so we need to undef it.
  #ifdef ABSOLUTE
  #undef ABSOLUTE
  #endif
  
  // Conflicted with HttpRequest::Type::DELETE, so we need to undef it.
  #ifdef DELETE
  #undef DELETE
  #endif
  
  #undef min
  #undef max