2012-04-25 18:17:04 +08:00
|
|
|
#ifndef __CCPLATFORMDEFINE_H__
|
|
|
|
#define __CCPLATFORMDEFINE_H__
|
|
|
|
|
2013-01-09 06:15:34 +08:00
|
|
|
#include "android/log.h"
|
2012-04-25 18:17:04 +08:00
|
|
|
|
2013-01-09 06:15:34 +08:00
|
|
|
#define CC_DLL
|
2012-04-25 18:17:04 +08:00
|
|
|
|
2013-01-09 06:15:34 +08:00
|
|
|
#define CC_NO_MESSAGE_PSEUDOASSERT(cond) \
|
|
|
|
if (!(cond)) { \
|
|
|
|
__android_log_print(ANDROID_LOG_ERROR, \
|
|
|
|
"cocos2d-x assert", \
|
|
|
|
"%s function:%s line:%d", \
|
|
|
|
__FILE__, __FUNCTION__, __LINE__); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define CC_MESSAGE_PSEUDOASSERT(cond, msg) \
|
|
|
|
if (!(cond)) { \
|
|
|
|
__android_log_print(ANDROID_LOG_ERROR, \
|
|
|
|
"cocos2d-x assert", \
|
|
|
|
"file:%s function:%s line:%d, %s", \
|
|
|
|
__FILE__, __FUNCTION__, __LINE__, msg); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define CC_ASSERT(cond) CC_NO_MESSAGE_PSEUDOASSERT(cond)
|
2012-04-25 18:17:04 +08:00
|
|
|
|
|
|
|
#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__*/
|