lapi.h 351 B

1234567891011121314151617181920
  1. /*
  2. ** $Id: lapi.h,v 1.1 1997/09/16 19:25:59 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 (TObject *o);
  12. void luaA_packresults (void);
  13. int luaA_passresults (void);
  14. #endif