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.
19 lines
628 B
19 lines
628 B
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <filesystem>
|
|
#include <optional>
|
|
#include "common/common_types.h"
|
|
|
|
namespace QtCommon::FS {
|
|
|
|
void LinkRyujinx(std::filesystem::path& from, std::filesystem::path& to);
|
|
const std::filesystem::path GetRyujinxSavePath(const std::filesystem::path& path_hint,
|
|
const u64& program_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
|