mirror of https://github.com/axmolengine/axmol.git
27 lines
531 B
C
27 lines
531 B
C
|
#ifndef __CCPLATFORMDEFINE_H__
|
||
|
#define __CCPLATFORMDEFINE_H__
|
||
|
|
||
|
|
||
|
#if defined(_USRDLL)
|
||
|
#define CC_DLL __declspec(dllexport)
|
||
|
#else /* use a DLL library */
|
||
|
#define CC_DLL __declspec(dllimport)
|
||
|
#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__*/
|