ae0ff0bd62
- [FIX] Afegits defines de Lua per a cada SO
11 lines
222 B
C++
11 lines
222 B
C++
// lua.hpp
|
|
// Lua header files for C++
|
|
// 'extern "C" not supplied automatically in lua.h and other headers
|
|
// because Lua also compiles as C++
|
|
|
|
//extern "C" {
|
|
#include "lua.h"
|
|
#include "lualib.h"
|
|
#include "lauxlib.h"
|
|
//}
|