blob: ea5a646b5b9e31bf973b493fab9b5b49f12697a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __LUASUPP_H
#define __LUASUPP_H
#include <lua.h>
int luaopen_lpack(lua_State *L);
int luaopen_bit(lua_State *L);
#define LUA_AP_SESSION "ap_session"
int luaopen_ap_session(lua_State *L);
#endif
|