summaryrefslogtreecommitdiff
path: root/plugins/MirLua/src/lua/lapi.h
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2016-01-02 13:55:52 +0000
committerAlexander Lantsev <aunsane@gmail.com>2016-01-02 13:55:52 +0000
commit556ec5e59c94222224eb8a13c05d737b765b9259 (patch)
tree4669457199f30201918c1f975ccf635b1c9b85ba /plugins/MirLua/src/lua/lapi.h
parent0a79763db57ac830746fbb70f227ca2a0b758e49 (diff)
MirLua: linked with liblua
git-svn-id: http://svn.miranda-ng.org/main/trunk@15989 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirLua/src/lua/lapi.h')
-rw-r--r--plugins/MirLua/src/lua/lapi.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/plugins/MirLua/src/lua/lapi.h b/plugins/MirLua/src/lua/lapi.h
deleted file mode 100644
index 6d36dee3fb..0000000000
--- a/plugins/MirLua/src/lua/lapi.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
-** $Id: lapi.h,v 2.9 2015/03/06 19:49:50 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