mirror of
https://github.com/Obfuscator-Collections/VMProtect.git
synced 2026-08-31 22:44:43 +03:00
FILE / ScuroNeko/VMProtect
third-party/lua/lua.hpp
Исходный файл и его история в репозитории.
10 lines
191 B
C++
10 lines
191 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"
|
|
}
|