From 8d495c256edf40bb0c1ef2714ea1a070a4871dda 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 --- libstratosphere/source/fssrv/fssrv_file_system_proxy_impl.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libstratosphere/source/fssrv/fssrv_file_system_proxy_impl.cpp b/libstratosphere/source/fssrv/fssrv_file_system_proxy_impl.cpp index c3336bfb..eabc29e3 100644 --- a/libstratosphere/source/fssrv/fssrv_file_system_proxy_impl.cpp +++ b/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"); }