From e1cdfd27cad943290a0233119548a8dd8876bd52 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Thu, 29 Aug 2019 20:02:35 -0400 Subject: Replaced LuaBridge with sol2 and completely encapsulated scripting within script system --- lib/LuaBridge/Tests/Lua/Lua.5.2.0/src/lapi.h | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 lib/LuaBridge/Tests/Lua/Lua.5.2.0/src/lapi.h (limited to 'lib/LuaBridge/Tests/Lua/Lua.5.2.0/src/lapi.h') diff --git a/lib/LuaBridge/Tests/Lua/Lua.5.2.0/src/lapi.h b/lib/LuaBridge/Tests/Lua/Lua.5.2.0/src/lapi.h deleted file mode 100644 index 0909a39..0000000 --- a/lib/LuaBridge/Tests/Lua/Lua.5.2.0/src/lapi.h +++ /dev/null @@ -1,24 +0,0 @@ -/* -** $Id: lapi.h,v 2.7 2009/11/27 15:37:59 roberto Exp $ -** Auxiliary functions from Lua API -** See Copyright Notice in lua.h -*/ - -#ifndef lapi_h -#define lapi_h - - -#include "llimits.h" -#include "lstate.h" - -#define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top, \ - "stack overflow");} - -#define adjustresults(L,nres) \ - { if ((nres) == LUA_MULTRET && L->ci->top < L->top) L->ci->top = L->top; } - -#define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func), \ - "not enough elements in the stack") - - -#endif -- cgit v1.2.3