set.mitm: much more aggressively cache locale (#1160)

This commit is contained in:
Michael Scire
2020-09-23 02:01:07 -07:00
parent ff310a0647
commit f4d10a4481
4 changed files with 134 additions and 9 deletions

View File

@@ -0,0 +1,20 @@
/**
* @file set_shim.h
* @brief Settings Services (fs) IPC wrapper for set.mitm.
* @author SciresM
* @copyright libnx Authors
*/
#pragma once
#include <switch.h>
#ifdef __cplusplus
extern "C" {
#endif
/* Forwarding shims. */
Result setGetLanguageCodeFwd(Service *s, u64* out);
Result setGetRegionCodeFwd(Service *s, SetRegion *out);
#ifdef __cplusplus
}
#endif