server/src/lua.hpp

23 lines
331 B
C++
Raw Normal View History

#ifdef __cplusplus
2003-12-14 11:02:29 +01:00
extern "C" {
#endif
#include <lua.h>
#include <lauxlib.h>
#include <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