lapi.h 297 B

1234567891011121314151617181920
  1. /*
  2. ** $Id: $
  3. ** auxiliar 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 (TObject *o);
  12. void luaA_packresults (void);
  13. int luaA_passresults (void);
  14. #endif