mirror of
https://github.com/k4yt3x/video2x.git
synced 2025-01-15 04:08:52 +00:00
38 lines
780 B
C++
38 lines
780 B
C++
#pragma once
|
|
|
|
#include <filesystem>
|
|
#include <optional>
|
|
#include <string>
|
|
|
|
namespace video2x {
|
|
namespace fsutils {
|
|
|
|
#ifdef _WIN32
|
|
typedef wchar_t CharType;
|
|
#define STR(x) L##x
|
|
#else
|
|
typedef char CharType;
|
|
#define STR(x) x
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
typedef std::wstring StringType;
|
|
#else
|
|
typedef std::string StringType;
|
|
#endif
|
|
|
|
bool file_is_readable(const std::filesystem::path& path);
|
|
|
|
std::optional<std::filesystem::path> find_resource(const std::filesystem::path& resource);
|
|
|
|
std::string path_to_u8string(const std::filesystem::path& path);
|
|
|
|
std::string wstring_to_u8string(const fsutils::StringType& wstr);
|
|
|
|
fsutils::StringType path_to_string_type(const std::filesystem::path& path);
|
|
|
|
fsutils::StringType to_string_type(int value);
|
|
|
|
} // namespace fsutils
|
|
} // namespace video2x
|