mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
20 lines
307 B
C
20 lines
307 B
C
/*
|
|
** $Id$
|
|
** Auxiliary functions from Lua API
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
|
|
#ifndef lapi_h
|
|
#define lapi_h
|
|
|
|
|
|
#include "engine/lua/lua.h"
|
|
#include "engine/lua/lobject.h"
|
|
|
|
TObject *luaA_Address(lua_Object o);
|
|
void luaA_pushobject(TObject *o);
|
|
void luaA_packresults();
|
|
int32 luaA_passresults();
|
|
|
|
#endif
|