lapi.h 418 B

123456789101112131415161718192021
  1. /*
  2. ** $Id: lapi.h,v 1.7 1999/09/21 16:10:13 roberto Exp roberto $
  3. ** Auxiliary functions from Lua API
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lapi_h
  7. #define lapi_h
  8. #include "lua.h"
  9. #include "lobject.h"
  10. TObject *luaA_Address (lua_Object o);
  11. void luaA_pushobject (const TObject *o);
  12. GlobalVar *luaA_nextvar (TaggedString *g);
  13. int luaA_next (const Hash *t, int i);
  14. lua_Object luaA_putObjectOnTop (void);
  15. #endif