blob: a8dfed8e5e270cbe361175bb9d174412b745aaf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef LUA_STATE
#define LUA_STATE
extern "C" {
#include <luajit-2.1/lua.h>
#include <luajit-2.1/lauxlib.h>
#include <luajit-2.1/lualib.h>
}
void init_lua_state();
void free_lua_state();
lua_State* get_lua_state();
void cache_install_directories();
void cache_repos();
void cache_build_systems();
#endif
|