mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-27 09:55:34 -05:00
33 lines
525 B
C
33 lines
525 B
C
|
#ifndef __CCPLATFORMDEFINE_H__
|
||
|
#define __CCPLATFORMDEFINE_H__
|
||
|
|
||
|
#include <assert.h>
|
||
|
|
||
|
#ifdef GEODE_EXPORTING
|
||
|
#define CC_DLL __attribute__((visibility("default")))
|
||
|
#else
|
||
|
#define CC_DLL
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#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__*/
|