2022-07-30 12:24:03 -04:00
|
|
|
#ifndef __CCPLATFORMDEFINE_H__
|
|
|
|
#define __CCPLATFORMDEFINE_H__
|
|
|
|
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(_USRDLL)
|
2023-02-01 17:03:01 -05:00
|
|
|
#define CC_DLL
|
2023-06-07 12:07:42 -04:00
|
|
|
#define ACTUAL_CC_DLL
|
2022-07-30 12:24:03 -04:00
|
|
|
#else // use a DLL library
|
2023-02-01 17:03:01 -05:00
|
|
|
#define CC_DLL
|
2023-06-07 12:07:42 -04:00
|
|
|
#define ACTUAL_CC_DLL __declspec(dllimport)
|
2022-07-30 12:24:03 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#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__*/
|