summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/lapi.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/lapi.h')
-rw-r--r--apps/plugins/lua/lapi.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/apps/plugins/lua/lapi.h b/apps/plugins/lua/lapi.h
index f968ffc992..c7d34ad848 100644
--- a/apps/plugins/lua/lapi.h
+++ b/apps/plugins/lua/lapi.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id$ 2** $Id: lapi.h,v 2.7.1.1 2013/04/12 18:48:47 roberto Exp $
3** Auxiliary functions from Lua API 3** Auxiliary functions from Lua API
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -8,9 +8,17 @@
8#define lapi_h 8#define lapi_h
9 9
10 10
11#include "lobject.h" 11#include "llimits.h"
12#include "lstate.h"
12 13
14#define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top, \
15 "stack overflow");}
16
17#define adjustresults(L,nres) \
18 { if ((nres) == LUA_MULTRET && L->ci->top < L->top) L->ci->top = L->top; }
19
20#define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func), \
21 "not enough elements in the stack")
13 22
14LUAI_FUNC void luaA_pushobject (lua_State *L, const TValue *o);
15 23
16#endif 24#endif