From 13411902c9bb9e7fb7275999658ee4ae5dbb6782 Mon Sep 17 00:00:00 2001 From: Liam Date: Sat, 14 Oct 2023 10:42:18 -0400 Subject: [PATCH] fs: add missing stub for GetProgramId --- .../source/fssrv/fssrv_file_system_proxy_impl.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libraries/libstratosphere/source/fssrv/fssrv_file_system_proxy_impl.cpp b/libraries/libstratosphere/source/fssrv/fssrv_file_system_proxy_impl.cpp index c3336bfb7..eabc29e34 100644 --- a/libraries/libstratosphere/source/fssrv/fssrv_file_system_proxy_impl.cpp +++ b/libraries/libstratosphere/source/fssrv/fssrv_file_system_proxy_impl.cpp @@ -307,6 +307,10 @@ namespace ams::fssrv { AMS_ABORT("TODO"); } + Result FileSystemProxyImpl::GetProgramId(ams::sf::Out out_program_id, const fssrv::sf::FspPath &path, fs::ContentAttributes attr) { + AMS_ABORT("TODO"); + } + Result FileSystemProxyImpl::GetRightsIdByPath(ams::sf::Out out, const fssrv::sf::FspPath &path) { AMS_ABORT("TODO"); }