summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/filesystem/fsp_srv.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-09-01 05:19:23 +0200
committerZach Hilman <zachhilman@gmail.com>2018-09-01 05:19:23 +0200
commit7939ea18e8573038ac6f2662e4314465d82ddd7c (patch)
treeadfaf6693087e015d54abd3bc618a9cd2c7e3c90 /src/core/hle/service/filesystem/fsp_srv.cpp
parentMerge pull request #1196 from FearlessTobi/ccache-consistency (diff)
downloadyuzu-7939ea18e8573038ac6f2662e4314465d82ddd7c.tar
yuzu-7939ea18e8573038ac6f2662e4314465d82ddd7c.tar.gz
yuzu-7939ea18e8573038ac6f2662e4314465d82ddd7c.tar.bz2
yuzu-7939ea18e8573038ac6f2662e4314465d82ddd7c.tar.lz
yuzu-7939ea18e8573038ac6f2662e4314465d82ddd7c.tar.xz
yuzu-7939ea18e8573038ac6f2662e4314465d82ddd7c.tar.zst
yuzu-7939ea18e8573038ac6f2662e4314465d82ddd7c.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/filesystem/fsp_srv.cpp23
1 files changed, 22 insertions, 1 deletions
diff --git a/src/core/hle/service/filesystem/fsp_srv.cpp b/src/core/hle/service/filesystem/fsp_srv.cpp
index 5759299fe..994845f94 100644
--- a/src/core/hle/service/filesystem/fsp_srv.cpp
+++ b/src/core/hle/service/filesystem/fsp_srv.cpp
@@ -26,6 +26,17 @@
namespace Service::FileSystem {
+enum class FileSystemType : u8 {
+ Invalid0 = 0,
+ Invalid1 = 1,
+ Logo = 2,
+ ContentControl = 3,
+ ContentManual = 4,
+ ContentMeta = 5,
+ ContentData = 6,
+ ApplicationPackage = 7,
+};
+
class IStorage final : public ServiceFramework<IStorage> {
public:
explicit IStorage(FileSys::VirtualFile backend_)
@@ -420,7 +431,7 @@ FSP_SRV::FSP_SRV() : ServiceFramework("fsp-srv") {
{0, nullptr, "MountContent"},
{1, &FSP_SRV::Initialize, "Initialize"},
{2, nullptr, "OpenDataFileSystemByCurrentProcess"},
- {7, nullptr, "OpenFileSystemWithPatch"},
+ {7, &FSP_SRV::OpenFileSystemWithPatch, "OpenFileSystemWithPatch"},
{8, nullptr, "OpenFileSystemWithId"},
{9, nullptr, "OpenDataFileSystemByApplicationId"},
{11, nullptr, "OpenBisFileSystem"},
@@ -516,6 +527,16 @@ void FSP_SRV::Initialize(Kernel::HLERequestContext& ctx) {
rb.Push(RESULT_SUCCESS);
}
+void FSP_SRV::OpenFileSystemWithPatch(Kernel::HLERequestContext& ctx) {
+ IPC::RequestParser rp{ctx};
+
+ const auto type = rp.PopRaw<FileSystemType>();
+ const auto title_id = rp.PopRaw<u64>();
+
+ IPC::ResponseBuilder rb{ctx, 2, 0, 0};
+ rb.Push(ResultCode(-1));
+}
+
void FSP_SRV::MountSdCard(Kernel::HLERequestContext& ctx) {
LOG_DEBUG(Service_FS, "called");