mirror of
https://gitcode.com/JianFeeeee/LuaCangjia_api.git
synced 2026-09-20 00:48:47 +00:00
- Lua 4.0 是首个引入 lua_State* 的版本, 但 API 与 5.x 代际差异大 - 桥接层适配要点与工作量评估见 doc/ADAPTATION-lua40.md - 本分支暂不承诺可编译, 后续按需移植
18 lines
297 B
C
18 lines
297 B
C
/*
|
|
** $Id: lapi.h,v 1.20 2000/08/31 14:08:27 roberto Exp $
|
|
** Auxiliary functions from Lua API
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
|
|
#ifndef lapi_h
|
|
#define lapi_h
|
|
|
|
|
|
#include "lobject.h"
|
|
|
|
|
|
TObject *luaA_index (lua_State *L, int index);
|
|
void luaA_pushobject (lua_State *L, const TObject *o);
|
|
|
|
#endif
|