Define CC_ASSERT.

This commit is contained in:
Lee, Jae-Hong 2013-05-02 22:25:45 +09:00
parent d887b3cd84
commit e51fe4f75e
1 changed files with 3 additions and 0 deletions

View File

@ -27,9 +27,12 @@ THE SOFTWARE.
#define __CCPLATFORMDEFINE_H__
#include <string.h>
#include <assert.h>
#define CC_DLL
#define CC_ASSERT(cond) assert(cond)
#define CC_UNUSED_PARAM(unusedparam) (void)unusedparam
/* Define NULL pointer value */