mirror of
https://gitcode.com/JianFeeeee/LuaCangjia_api.git
synced 2026-09-19 16:42:48 +00:00
14 lines
243 B
C++
Executable File
14 lines
243 B
C++
Executable File
// lua.hpp
|
|
// Lua header files for C++
|
|
// <<extern "C">> not supplied automatically because Lua also compiles as C++
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#include "lua.h"
|
|
#include "lualib.h"
|
|
#include "lauxlib.h"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|