diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-10-17 12:12:45 -0200 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1995-10-17 12:12:45 -0200 |
| commit | d24253d92f1579032c7a6a30e50bba75ca56d4fe (patch) | |
| tree | e6dbedac860737544bb6945dcb8a555cac0ee93d | |
| parent | 2cffb08a5c770678999a313a83c76652a3d02d4c (diff) | |
| download | lua-d24253d92f1579032c7a6a30e50bba75ca56d4fe.tar.gz lua-d24253d92f1579032c7a6a30e50bba75ca56d4fe.tar.bz2 lua-d24253d92f1579032c7a6a30e50bba75ca56d4fe.zip | |
module to declare API for debuging.
| -rw-r--r-- | luadebug.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/luadebug.h b/luadebug.h new file mode 100644 index 00000000..1d198466 --- /dev/null +++ b/luadebug.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | /* | ||
| 2 | ** LUA - Linguagem para Usuarios de Aplicacao | ||
| 3 | ** Grupo de Tecnologia em Computacao Grafica | ||
| 4 | ** TeCGraf - PUC-Rio | ||
| 5 | ** $Id: $ | ||
| 6 | */ | ||
| 7 | |||
| 8 | |||
| 9 | #ifndef luadebug_h | ||
| 10 | #define luadebug_h | ||
| 11 | |||
| 12 | #include "lua.h" | ||
| 13 | |||
| 14 | lua_Object lua_stackedfunction(int level); | ||
| 15 | void lua_funcinfo (lua_Object func, char **filename, char **funcname, | ||
| 16 | char **objname, int *linedefined); | ||
| 17 | |||
| 18 | |||
| 19 | #endif | ||
