// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project // SPDX-License-Identifier: GPL-3.0-or-later #include "common/common_types.h" #include #include #pragma once namespace QtCommon::FS { void LinkRyujinx(std::filesystem::path &from, std::filesystem::path &to); u64 GetRyujinxSaveID(const u64 &program_id); /// @brief {eden, ryu} std::optional> GetEmuPaths( const u64 program_id, const u64 save_id, const std::string &user_id); /// returns FALSE if the dirs are NOT linked bool CheckUnlink(const std::filesystem::path &eden_dir, const std::filesystem::path &ryu_dir); } // namespace QtCommon::FS