From 39b79783297bee79db9853b63d199e120a009a8f Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 23 Feb 2001 14:17:25 -0300 Subject: first (big) step to support wide chars --- luadebug.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'luadebug.h') diff --git a/luadebug.h b/luadebug.h index 72994165..5ffdbe03 100644 --- a/luadebug.h +++ b/luadebug.h @@ -1,5 +1,5 @@ /* -** $Id: luadebug.h,v 1.16 2000/10/20 16:39:03 roberto Exp roberto $ +** $Id: luadebug.h,v 1.17 2000/10/30 12:38:50 roberto Exp roberto $ ** Debugging API ** See Copyright Notice in lua.h */ @@ -18,9 +18,9 @@ typedef void (*lua_Hook) (lua_State *L, lua_Debug *ar); 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); +LUA_API int lua_getinfo (lua_State *L, const l_char *what, lua_Debug *ar); +LUA_API const l_char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n); +LUA_API const l_char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n); LUA_API lua_Hook lua_setcallhook (lua_State *L, lua_Hook func); LUA_API lua_Hook lua_setlinehook (lua_State *L, lua_Hook func); @@ -29,15 +29,15 @@ LUA_API lua_Hook lua_setlinehook (lua_State *L, lua_Hook func); #define LUA_IDSIZE 60 struct lua_Debug { - const char *event; /* `call', `return' */ + const l_char *event; /* `call', `return' */ int currentline; /* (l) */ - const char *name; /* (n) */ - const char *namewhat; /* (n) `global', `tag method', `local', `field' */ + const l_char *name; /* (n) */ + const l_char *namewhat; /* (n) `global', `tag method', `local', `field' */ int nups; /* (u) number of upvalues */ int linedefined; /* (S) */ - const char *what; /* (S) `Lua' function, `C' function, Lua `main' */ - const char *source; /* (S) */ - char short_src[LUA_IDSIZE]; /* (S) */ + const l_char *what; /* (S) `Lua' function, `C' function, Lua `main' */ + const l_char *source; /* (S) */ + l_char short_src[LUA_IDSIZE]; /* (S) */ /* private part */ struct lua_TObject *_func; /* active function */ }; -- cgit v1.2.3-55-g6feb