server/src/lua.hpp

24 lines
350 B
C++
Raw Normal View History

#ifdef __cplusplus
2003-12-14 11:02:29 +01:00
extern "C" {
#endif
2003-12-14 13:27:09 +01:00
#include <lua50/lua.h>
#include <lua50/lauxlib.h>
#include <lua50/lualib.h>
#ifdef __cplusplus
2003-12-14 11:02:29 +01:00
}
#ifndef LUABIND_BETA
# include <boost/version.hpp>
# if BOOST_VERSION < 103300
# define LUABIND_BETA 7
# define LUABIND_DEVEL 1
# else
# define LUABIND_BETA 7
# define LUABIND_DEVEL 2
# endif
#endif
#endif