From 033c77716cece22ad1ee0d606f75c4659ff4ed76 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 28 Mar 2019 19:45:03 -0700 Subject: [PATCH] results: Add more fs results --- include/stratosphere/results/fs_results.hpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/stratosphere/results/fs_results.hpp b/include/stratosphere/results/fs_results.hpp index 3bcf5d50..6b6d6721 100644 --- a/include/stratosphere/results/fs_results.hpp +++ b/include/stratosphere/results/fs_results.hpp @@ -25,6 +25,10 @@ static constexpr Result ResultFsPathAlreadyExists = MAKERESULT(Module_Fs, 2); static constexpr Result ResultFsTargetLocked = MAKERESULT(Module_Fs, 7); static constexpr Result ResultFsDirectoryNotEmpty = MAKERESULT(Module_Fs, 8); +static constexpr Result ResultFsMountNameAlreadyExists = MAKERESULT(Module_Fs, 60); + +static constexpr Result ResultFsSdCardNotPresent = MAKERESULT(Module_Fs, 2001); + static constexpr Result ResultFsNotImplemented = MAKERESULT(Module_Fs, 3001); static constexpr Result ResultFsOutOfRange = MAKERESULT(Module_Fs, 3005); @@ -45,3 +49,5 @@ static constexpr Result ResultFsInvalidSize = MAKERESULT(Module_Fs, 606 static constexpr Result ResultFsNullptrArgument = MAKERESULT(Module_Fs, 6063); static constexpr Result ResultFsUnsupportedOperation = MAKERESULT(Module_Fs, 6300); + +static constexpr Result ResultFsPermissionDenied = MAKERESULT(Module_Fs, 6400);