mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-04-07 09:01:29 -06:00
* Add 'Set Up System Files' option * Fix CIA installation and HLE module loading when no console unique data provided.
36 lines
1.0 KiB
C++
36 lines
1.0 KiB
C++
// Copyright Citra Emulator Project / Azahar Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <optional>
|
|
#include <utility>
|
|
#include <vector>
|
|
#include "common/common_types.h"
|
|
|
|
namespace Core {
|
|
|
|
constexpr u32 NUM_SYSTEM_TITLE_REGIONS = 7;
|
|
|
|
enum SystemTitleSet : u32 { Minimal = 1 << 0, Old3ds = 1 << 1, New3ds = 1 << 2 };
|
|
|
|
/// Returns a list of firmware title IDs for a specific set and region.
|
|
std::vector<u64> GetSystemTitleIds(SystemTitleSet set, u32 region);
|
|
|
|
/// Gets the home menu title ID for a specific region.
|
|
u64 GetHomeMenuTitleId(u32 region);
|
|
|
|
/// Gets the home menu NCCH path for a specific region.
|
|
std::string GetHomeMenuNcchPath(u32 region);
|
|
|
|
/// Returns the region of a system title, if it can be determined.
|
|
std::optional<u32> GetSystemTitleRegion(u64 title_id);
|
|
|
|
/// Determines if all system titles are installed for o3ds and n3ds.
|
|
std::pair<bool, bool> AreSystemTitlesInstalled();
|
|
|
|
void UninstallSystemFiles(SystemTitleSet set);
|
|
|
|
} // namespace Core
|