lapi.h 441 B

12345678910111213141516171819202122
  1. /*
  2. ** $Id: lapi.h,v 1.4 1999/02/23 14:57:28 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. void luaA_packresults (void);
  13. int luaA_passresults (void);
  14. TaggedString *luaA_nextvar (TaggedString *g);
  15. int luaA_next (const Hash *t, int i);
  16. #endif