背景和头像缺失
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
#ifndef __LUABINDINGEXPROT_H__
|
||||
#define __LUABINDINGEXPROT_H__
|
||||
|
||||
#if (defined(WIN32) && defined(_WINDOWS)) || defined(WINRT) || defined(WP8)
|
||||
#ifdef __MINGW32__
|
||||
#include <string.h>
|
||||
#endif
|
||||
|
||||
#if defined(_USRLUASTATIC)
|
||||
#define CC_LUA_DLL
|
||||
#else
|
||||
#if defined(_USRLUADLL)
|
||||
#define CC_LUA_DLL __declspec(dllexport)
|
||||
#else /* use a DLL library */
|
||||
#define CC_LUA_DLL __declspec(dllimport)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* Define NULL pointer value */
|
||||
#ifndef NULL
|
||||
#ifdef __cplusplus
|
||||
#define NULL 0
|
||||
#else
|
||||
#define NULL ((void *)0)
|
||||
#endif
|
||||
#endif
|
||||
#elif defined(_SHARED_)
|
||||
#define CC_LUA_DLL __attribute__((visibility("default")))
|
||||
#else
|
||||
#define CC_LUA_DLL
|
||||
#endif
|
||||
|
||||
#endif /* __CCEXTENSIONEXPORT_H__*/
|
||||
Reference in New Issue
Block a user