We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
MountSaveData
1 parent ce8b343 commit 0787e16Copy full SHA for 0787e16
include/nn/fs/fs_save.h
@@ -3,10 +3,16 @@
3
#include <nn/account.h>
4
#include <nn/fs/fs_types.h>
5
6
+namespace nn {
7
+typedef u64 ApplicationId;
8
+};
9
+
10
namespace nn::fs {
11
12
Result EnsureSaveData(const nn::account::Uid&);
13
Result MountSaveData(const char*, UserId);
14
+Result MountSaveData(const char*, const nn::account::Uid&);
15
+Result MountSaveData(const char*, ApplicationId, const nn::account::Uid&);
16
Result MountSaveDataForDebug(const char*);
17
Result CommitSaveData(const char* path);
18
0 commit comments