summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/ns.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2023-08-10 06:24:31 +0200
committerGitHub <noreply@github.com>2023-08-10 06:24:31 +0200
commit9d3a293a4ea17b60146c10e7561c0fd1219fd6c1 (patch)
treeb69936f3e53ee675de0ca21a1dffabd7e71acae0 /src/core/hle/service/ns/ns.h
parentMerge pull request #11247 from german77/pctl (diff)
parentfs: return result on null outputs (diff)
downloadyuzu-9d3a293a4ea17b60146c10e7561c0fd1219fd6c1.tar
yuzu-9d3a293a4ea17b60146c10e7561c0fd1219fd6c1.tar.gz
yuzu-9d3a293a4ea17b60146c10e7561c0fd1219fd6c1.tar.bz2
yuzu-9d3a293a4ea17b60146c10e7561c0fd1219fd6c1.tar.lz
yuzu-9d3a293a4ea17b60146c10e7561c0fd1219fd6c1.tar.xz
yuzu-9d3a293a4ea17b60146c10e7561c0fd1219fd6c1.tar.zst
yuzu-9d3a293a4ea17b60146c10e7561c0fd1219fd6c1.zip
Diffstat (limited to 'src/core/hle/service/ns/ns.h')
-rw-r--r--src/core/hle/service/ns/ns.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/service/ns/ns.h b/src/core/hle/service/ns/ns.h
index 203388e1f..175dad780 100644
--- a/src/core/hle/service/ns/ns.h
+++ b/src/core/hle/service/ns/ns.h
@@ -28,8 +28,9 @@ public:
explicit IApplicationManagerInterface(Core::System& system_);
~IApplicationManagerInterface() override;
- ResultVal<u8> GetApplicationDesiredLanguage(u32 supported_languages);
- ResultVal<u64> ConvertApplicationLanguageToLanguageCode(u8 application_language);
+ Result GetApplicationDesiredLanguage(u8* out_desired_language, u32 supported_languages);
+ Result ConvertApplicationLanguageToLanguageCode(u64* out_language_code,
+ u8 application_language);
private:
void GetApplicationControlData(HLERequestContext& ctx);