lapi.h 685 B

123456789101112131415161718192021222324
  1. /*
  2. ** $Id: lapi.h,v 1.10 1999/12/02 16:24:45 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. lua_Type luaA_normalizedtype (const TObject *o);
  10. void luaA_setnormalized (TObject *d, const TObject *s);
  11. void luaA_checkCparams (lua_State *L, int nParams);
  12. const TObject *luaA_protovalue (const TObject *o);
  13. void luaA_pushobject (lua_State *L, const TObject *o);
  14. GlobalVar *luaA_nextvar (lua_State *L, TaggedString *g);
  15. int luaA_next (lua_State *L, const Hash *t, int i);
  16. lua_Object luaA_putluaObject (lua_State *L, const TObject *o);
  17. lua_Object luaA_putObjectOnTop (lua_State *L);
  18. #endif