Pioneer
CoreFwdDecl.h
Go to the documentation of this file.
1 // Copyright © 2008-2023 Pioneer Developers. See AUTHORS.txt for details
2 // Licensed under the terms of the GPL v3. See licenses/GPL-3.txt
3 
4 #pragma once
5 
6 #include "../LuaUtils.h"
7 
8 // Forward-declared from ../LuaUtils.cpp
9 int luaopen_utils(lua_State *L);
10 
11 // Set up the import() functionality
12 int luaopen_import(lua_State *L);
13 
14 // Forward-declared from Sandbox.cpp
15 void pi_lua_dofile(lua_State *l, const FileSystem::FileData &code, int nret = 0);
void pi_lua_dofile(lua_State *l, const FileSystem::FileData &code, int nret=0)
Definition: Sandbox.cpp:274
int luaopen_utils(lua_State *L)
Definition: LuaUtils.cpp:175
int luaopen_import(lua_State *L)
Definition: Import.cpp:524
Definition: FileSystem.h:158