Pioneer
Loading...
Searching...
No Matches
LuaFileSystem.h
Go to the documentation of this file.
1// Copyright © 2008-2024 Pioneer Developers. See AUTHORS.txt for details
2// Licensed under the terms of the GPL v3. See licenses/GPL-3.txt
3
4#ifndef _LUAFILESYSTEM_H
5#define _LUAFILESYSTEM_H
6
7#include "lua/Lua.h"
8
9namespace LuaFileSystem {
10 void Register();
11
12 void register_raw_io_open_function(lua_CFunction open);
13 int l_patched_io_open(lua_State* L);
14} // namespace LuaFileSystem
15
16#endif
Definition: LuaFileSystem.h:9
void Register()
Definition: LuaFileSystem.cpp:262
void register_raw_io_open_function(lua_CFunction open)
Definition: LuaFileSystem.cpp:60
int l_patched_io_open(lua_State *L)
Definition: LuaFileSystem.cpp:65