h2-mod/src/client/component/filesystem.hpp
2022-08-22 01:42:13 +02:00

18 lines
524 B
C++

#pragma once
#include "updater.hpp"
namespace filesystem
{
std::string read_file(const std::string& path);
bool read_file(const std::string& path, std::string* data, std::string* real_path = nullptr);
bool find_file(const std::string& path, std::string* real_path);
bool exists(const std::string& path);
void register_path(const std::filesystem::path& path);
void unregister_path(const std::filesystem::path& path);
std::vector<std::string> get_search_paths();
std::vector<std::string> get_search_paths_rev();
}