You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
330 B
17 lines
330 B
/*
|
|
* Copyright 2023 ailurux <ailuruxx@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
#pragma once
|
|
|
|
#include "lua.hpp"
|
|
#include "lua/file_iterator.hpp"
|
|
|
|
namespace lua {
|
|
|
|
auto check_file_iterator(lua_State*, int stack_pos) -> lua::FileIterator*;
|
|
|
|
auto RegisterFileSystemModule(lua_State*) -> void;
|
|
|
|
} // namespace lua
|
|
|