mirror of
https://github.com/u0u0/Quick-Cocos2dx-Community.git
synced 2026-06-22 03:52:47 +08:00
Add new Lua Binding for spSkeletonData. Integrate win32 Player. Add "exact_fit" mode for display
24 lines
388 B
C
24 lines
388 B
C
|
|
#ifndef __LUA_EXTRA_H_
|
|
#define __LUA_EXTRA_H_
|
|
|
|
#if defined(_USRDLL)
|
|
#define LUA_EXTENSIONS_DLL __declspec(dllexport)
|
|
#else /* use a DLL library */
|
|
#define LUA_EXTENSIONS_DLL
|
|
#endif
|
|
|
|
#if __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "lauxlib.h"
|
|
|
|
void LUA_EXTENSIONS_DLL luaopen_lua_extensions_more(lua_State *L);
|
|
|
|
#if __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __LUA_EXTRA_H_ */
|