mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
662a9e99f5
- remove cocos2dx folder - change all include paths in cocos2d to be relative
36 lines
615 B
C
36 lines
615 B
C
#ifndef __CCPLATFORMDEFINE_H__
|
|
#define __CCPLATFORMDEFINE_H__
|
|
|
|
#ifdef __MINGW32__
|
|
#include <string.h>
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(_USRDLL)
|
|
#define CC_DLL __declspec(dllexport)
|
|
#else // use a DLL library
|
|
#define CC_DLL __declspec(dllimport)
|
|
#endif
|
|
|
|
#include <assert.h>
|
|
|
|
#if CC_DISABLE_ASSERT > 0
|
|
#define CC_ASSERT(cond)
|
|
#else
|
|
#define CC_ASSERT(cond) assert(cond)
|
|
#endif
|
|
#define CC_UNUSED_PARAM(unusedparam) (void)unusedparam
|
|
|
|
/* Define NULL pointer value */
|
|
#ifndef NULL
|
|
#ifdef __cplusplus
|
|
#define NULL 0
|
|
#else
|
|
#define NULL ((void *)0)
|
|
#endif
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __CCPLATFORMDEFINE_H__*/
|