mirror of
https://gitcode.com/JianFeeeee/LuaCangjia_api.git
synced 2026-09-20 08:58:13 +00:00
- Lua 4.0 是首个引入 lua_State* 的版本, 但 API 与 5.x 代际差异大 - 桥接层适配要点与工作量评估见 doc/ADAPTATION-lua40.md - 本分支暂不承诺可编译, 后续按需移植
22 lines
480 B
C
22 lines
480 B
C
/*
|
|
** $Id: ldebug.h,v 1.7 2000/10/05 12:14:08 roberto Exp $
|
|
** Auxiliary functions from Debug Interface module
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
|
|
#ifndef ldebug_h
|
|
#define ldebug_h
|
|
|
|
|
|
#include "lstate.h"
|
|
#include "luadebug.h"
|
|
|
|
|
|
void luaG_typeerror (lua_State *L, StkId o, const char *op);
|
|
void luaG_binerror (lua_State *L, StkId p1, int t, const char *op);
|
|
int luaG_getline (int *lineinfo, int pc, int refline, int *refi);
|
|
void luaG_ordererror (lua_State *L, StkId top);
|
|
|
|
|
|
#endif
|