mirror of https://github.com/axmolengine/axmol.git
[Lua] Fixing "memset" and "memcpy" can't be found on BB port.
This commit is contained in:
parent
eb0358fda6
commit
91036225c3
|
@ -36,6 +36,11 @@ extern "C" {
|
|||
#include "ccTypes.h"
|
||||
#include "cocoa/CCObject.h"
|
||||
|
||||
#if CC_TARGET_PLATFORM == CC_PLATFORM_BLACKBERRY
|
||||
using std::memset;
|
||||
using std::memcpy;
|
||||
#endif
|
||||
|
||||
NS_CC_BEGIN
|
||||
|
||||
typedef int LUA_FUNCTION;
|
||||
|
|
Loading…
Reference in New Issue