mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
17 lines
235 B
C++
17 lines
235 B
C++
|
// 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"
|
||
|
}
|
||
|
|
||
|
|
||
|
#ifdef _RELEASE
|
||
|
|
||
|
#else if _DEBUG
|
||
|
|
||
|
#endif
|