Initial commit

This commit is contained in:
2026-02-02 04:50:13 +01:00
commit 5b11698731
22592 changed files with 7677434 additions and 0 deletions

23
engines/grim/lua/lapi.h Normal file
View File

@@ -0,0 +1,23 @@
/*
** Auxiliary functions from Lua API
** See Copyright Notice in lua.h
*/
#ifndef GRIM_LAPI_H
#define GRIM_LAPI_H
#include "engines/grim/lua/lua.h"
#include "engines/grim/lua/lobject.h"
namespace Grim {
TObject *luaA_Address(lua_Object o);
void luaA_pushobject(TObject *o);
void luaA_packresults();
int32 luaA_passresults();
void set_normalized(TObject *d, TObject *s);
} // end of namespace Grim
#endif