mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
101 lines
2.4 KiB
C
Vendored
101 lines
2.4 KiB
C
Vendored
/****************************************************************************
|
|
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 "../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
|
|
|
|
#endif // __MINGW32__
|
|
|
|
#include <math.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <time.h>
|
|
|
|
// for MIN MAX and sys/time.h on win32 platform
|
|
#ifndef __MINGW32__
|
|
|
|
#define MIN min
|
|
#define MAX max
|
|
|
|
#else // __MINGW32__
|
|
|
|
#include <sys/time.h>
|
|
|
|
#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 <stdint.h>
|
|
#else
|
|
#include "./compat/stdint.h"
|
|
#endif
|
|
|
|
#define _WINSOCKAPI_
|
|
// Structure timeval has define in winsock.h, include windows.h for it.
|
|
#include <Windows.h>
|
|
|
|
#ifndef __MINGW32__
|
|
|
|
// #include <WinSock2.h>
|
|
|
|
NS_CC_BEGIN
|
|
|
|
struct timezone
|
|
{
|
|
int tz_minuteswest;
|
|
int tz_dsttime;
|
|
};
|
|
|
|
int CC_DLL gettimeofday(struct timeval *, struct timezone *);
|
|
|
|
NS_CC_END
|
|
|
|
#else
|
|
|
|
#include <winsock.h>
|
|
|
|
#endif // __MINGW32__
|
|
|
|
#endif // __CC_STD_C_H__
|
|
|