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.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/plugins/lua/lapi.h b/apps/plugins/lua/lapi.h
new file mode 100644
index 0000000000..f968ffc992
--- /dev/null
+++ b/apps/plugins/lua/lapi.h
@@ -0,0 +1,16 @@
1/*
2** $Id$
3** Auxiliary functions from Lua API
4** See Copyright Notice in lua.h
5*/
6
7#ifndef lapi_h
8#define lapi_h
9
10
11#include "lobject.h"
12
13
14LUAI_FUNC void luaA_pushobject (lua_State *L, const TValue *o);
15
16#endif