mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
9 lines
No EOL
332 B
C
9 lines
No EOL
332 B
C
#define lua_lock(L) LuaLock(L)
|
|
#define lua_unlock(L) LuaUnlock(L)
|
|
#define lua_userstateopen(L) LuaLockInitial(L)
|
|
#define lua_userstatethread(L,L1) LuaLockInitial(L1) // Lua 5.1
|
|
|
|
void LuaLockInitial(lua_State * L);
|
|
void LuaLockFinal(lua_State * L);
|
|
void LuaLock(lua_State * L);
|
|
void LuaUnlock(lua_State * L); |