mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
Remove unnecessary Src/ folders
This commit is contained in:
27
Source/Core/Common/NandPaths.h
Normal file
27
Source/Core/Common/NandPaths.h
Normal file
@ -0,0 +1,27 @@
|
||||
// Copyright 2013 Dolphin Emulator Project
|
||||
// Licensed under GPLv2
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#ifndef __NANDPATHS_H__
|
||||
#define __NANDPATHS_H__
|
||||
|
||||
#include <string>
|
||||
#include "CommonTypes.h"
|
||||
|
||||
#define TITLEID_SYSMENU 0x0000000100000002ull
|
||||
|
||||
namespace Common
|
||||
{
|
||||
typedef std::pair<char, std::string> replace_t;
|
||||
typedef std::vector<replace_t> replace_v;
|
||||
|
||||
std::string GetTicketFileName(u64 _titleID);
|
||||
std::string GetTMDFileName(u64 _titleID);
|
||||
std::string GetTitleDataPath(u64 _titleID);
|
||||
std::string GetTitleContentPath(u64 _titleID);
|
||||
bool CheckTitleTMD(u64 _titleID);
|
||||
bool CheckTitleTIK(u64 _titleID);
|
||||
void ReadReplacements(replace_v& replacements);
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user