mirror of https://github.com/rusefi/lua.git
module to declare API for debuging.
This commit is contained in:
parent
2cffb08a5c
commit
d24253d92f
|
@ -0,0 +1,19 @@
|
||||||
|
/*
|
||||||
|
** LUA - Linguagem para Usuarios de Aplicacao
|
||||||
|
** Grupo de Tecnologia em Computacao Grafica
|
||||||
|
** TeCGraf - PUC-Rio
|
||||||
|
** $Id: $
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef luadebug_h
|
||||||
|
#define luadebug_h
|
||||||
|
|
||||||
|
#include "lua.h"
|
||||||
|
|
||||||
|
lua_Object lua_stackedfunction(int level);
|
||||||
|
void lua_funcinfo (lua_Object func, char **filename, char **funcname,
|
||||||
|
char **objname, int *linedefined);
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue