lfunc.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /*
  2. ** $Id: lfunc.h,v 1.13 2000/09/29 12:42:13 roberto Exp $
  3. ** Auxiliary functions to manipulate prototypes and closures
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lfunc_h
  7. #define lfunc_h
  8. #include "lobject.h"
  9. Proto *luaF_newproto (lua_State *L);
  10. void luaF_protook (lua_State *L, Proto *f, int pc);
  11. Closure *luaF_newclosure (lua_State *L, int nelems);
  12. void luaF_freeproto (lua_State *L, Proto *f);
  13. void luaF_freeclosure (lua_State *L, Closure *c);
  14. const char *luaF_getlocalname (const Proto *func, int local_number, int pc);
  15. #endif