Files
skynet/service-src/luacode_cache.h
2013-12-17 18:26:08 +08:00

13 lines
262 B
C

#ifndef lua_code_cache_h
#define lua_code_cache_h
#include <lua.h>
#include <stddef.h>
const char * luacode_load(const char * key, const char * code, size_t *sz);
int luacode_loadfile(lua_State *L, const char *filename);
int luacode_lib(lua_State *);
#endif