aboutsummaryrefslogtreecommitdiff
path: root/project/vs2015/external/lua/include/lua.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'project/vs2015/external/lua/include/lua.hpp')
-rw-r--r--project/vs2015/external/lua/include/lua.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/project/vs2015/external/lua/include/lua.hpp b/project/vs2015/external/lua/include/lua.hpp
new file mode 100644
index 00000000..ec417f59
--- /dev/null
+++ b/project/vs2015/external/lua/include/lua.hpp
@@ -0,0 +1,9 @@
+// lua.hpp
+// Lua header files for C++
+// <<extern "C">> not supplied automatically because Lua also compiles as C++
+
+extern "C" {
+#include "lua.h"
+#include "lualib.h"
+#include "lauxlib.h"
+}