aboutsummaryrefslogtreecommitdiff
path: root/lapi.h
diff options
context:
space:
mode:
Diffstat (limited to 'lapi.h')
-rw-r--r--lapi.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/lapi.h b/lapi.h
new file mode 100644
index 00000000..b21f69af
--- /dev/null
+++ b/lapi.h
@@ -0,0 +1,20 @@
1/*
2** $Id: $
3** auxiliar 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 "lua.h"
12#include "lobject.h"
13
14
15TObject *luaA_Address (lua_Object o);
16void luaA_pushobject (TObject *o);
17void luaA_packresults (void);
18int luaA_passresults (void);
19
20#endif