2012-08-02 13:02:59 +08:00
|
|
|
#ifndef __CCPLATFORMDEFINE_H__
|
|
|
|
#define __CCPLATFORMDEFINE_H__
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#if defined(_USRDLL)
|
2012-09-19 03:59:33 +08:00
|
|
|
#define CC_DLL __attribute__ ((visibility ("default")))
|
2012-08-02 13:02:59 +08:00
|
|
|
#else /* use a DLL library */
|
2012-09-19 03:59:33 +08:00
|
|
|
#define CC_DLL __attribute__ ((visibility ("default")))
|
2012-08-02 13:02:59 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#define CC_ASSERT(cond) assert(cond)
|
|
|
|
#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__*/
|