lua/luadebug.h

47 lines
1.3 KiB
C
Raw Normal View History

1995-10-17 07:12:45 -07:00
/*
** $Id: luadebug.h,v 1.16 2000/10/20 16:39:03 roberto Exp roberto $
1998-06-19 09:14:09 -07:00
** Debugging API
1997-09-16 12:25:59 -07:00
** See Copyright Notice in lua.h
1995-10-17 07:12:45 -07:00
*/
#ifndef luadebug_h
#define luadebug_h
1997-09-16 12:25:59 -07:00
1995-10-17 07:12:45 -07:00
#include "lua.h"
2000-03-30 09:19:48 -08:00
typedef struct lua_Debug lua_Debug; /* activation record */
typedef struct lua_Localvar lua_Localvar;
2000-03-30 09:19:48 -08:00
typedef void (*lua_Hook) (lua_State *L, lua_Debug *ar);
1995-10-17 07:12:45 -07:00
2000-10-20 09:39:03 -07:00
LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar);
LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar);
LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n);
LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n);
2000-10-20 09:39:03 -07:00
LUA_API lua_Hook lua_setcallhook (lua_State *L, lua_Hook func);
LUA_API lua_Hook lua_setlinehook (lua_State *L, lua_Hook func);
2000-01-19 04:00:45 -08:00
#define LUA_IDSIZE 60
2000-01-19 04:00:45 -08:00
2000-03-30 09:19:48 -08:00
struct lua_Debug {
2000-01-19 04:00:45 -08:00
const char *event; /* `call', `return' */
int currentline; /* (l) */
const char *name; /* (n) */
2000-08-11 09:17:28 -07:00
const char *namewhat; /* (n) `global', `tag method', `local', `field' */
2000-01-19 04:00:45 -08:00
int nups; /* (u) number of upvalues */
int linedefined; /* (S) */
const char *what; /* (S) `Lua' function, `C' function, Lua `main' */
const char *source; /* (S) */
2000-09-12 11:38:02 -07:00
char short_src[LUA_IDSIZE]; /* (S) */
2000-01-19 04:00:45 -08:00
/* private part */
2000-08-28 10:57:04 -07:00
struct lua_TObject *_func; /* active function */
2000-01-19 04:00:45 -08:00
};
1995-10-17 07:12:45 -07:00
#endif