2012-04-25 18:17:04 +08:00
|
|
|
#ifndef __CCPLATFORMDEFINE_H__
|
|
|
|
#define __CCPLATFORMDEFINE_H__
|
|
|
|
|
2013-01-25 18:34:26 +08:00
|
|
|
#ifdef __MINGW32__
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
2012-04-25 18:17:04 +08:00
|
|
|
|
2013-06-23 17:21:13 +08:00
|
|
|
//#if defined(_USRDLL)
|
|
|
|
// #define CC_DLL __declspec(dllexport)
|
|
|
|
//#else /* use a DLL library */
|
|
|
|
// #define CC_DLL __declspec(dllimport)
|
|
|
|
//#endif
|
|
|
|
|
|
|
|
#define CC_DLL
|
2012-04-25 18:17:04 +08:00
|
|
|
|
|
|
|
#include <assert.h>
|
2012-09-04 11:34:55 +08:00
|
|
|
|
|
|
|
#if CC_DISABLE_ASSERT > 0
|
|
|
|
#define CC_ASSERT(cond)
|
|
|
|
#else
|
2012-04-25 18:17:04 +08:00
|
|
|
#define CC_ASSERT(cond) assert(cond)
|
2012-09-04 11:34:55 +08:00
|
|
|
#endif
|
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__*/
|