blob: 1c2081cb7bd3a7c58341a2d1b90f9f57ce273c04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __JIN_LUA_LUAX_H
#define __JIN_LUA_LUAX_H
#include "LuaJIT/lua.hpp"
#include "lua/libraries/luax/luax.h"
#define luax_newclass(l, f) \
extern int f(lua_State*);\
f(l)
#endif
|