lapi.h 305 B

1234567891011121314151617
  1. /*
  2. ** $Id: lapi.h,v 1.19 2000/08/28 17:57:04 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 "lobject.h"
  9. TObject *luaA_index (lua_State *L, int index);
  10. void luaA_pushobject (lua_State *L, const TObject *o);
  11. #endif