/**************************************************************************** Copyright (c) 2010 cocos2d-x.org 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. ****************************************************************************/ #ifndef __CC_STD_C_H__ #define __CC_STD_C_H__ #include "platform/CCPlatformMacros.h" #include // 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 !defined(isnan) #define isnan _isnan #endif #ifndef snprintf #define snprintf _snprintf #endif #endif // __MINGW32__ #include #include #include #include #include #include // for MIN MAX and sys/time.h on win32 platform #ifndef __MINGW32__ #define MIN min #define MAX max #else // __MINGW32__ #include #ifndef MIN #define MIN(x,y) (((x) > (y)) ? (y) : (x)) #endif // MIN #ifndef MAX #define MAX(x,y) (((x) < (y)) ? (y) : (x)) #endif // MAX #endif // __MINGW32__ #if _MSC_VER >= 1600 || defined(__MINGW32__) #include #else #include "./compat/stdint.h" #endif #define _WINSOCKAPI_ // Structure timeval has define in winsock.h, include windows.h for it. #include #ifndef __MINGW32__ #include NS_CC_BEGIN struct timezone { int tz_minuteswest; int tz_dsttime; }; int CC_DLL gettimeofday(struct timeval *, struct timezone *); NS_CC_END #else #include #endif // __MINGW32__ #endif // __CC_STD_C_H__