mirror of
https://github.com/azahar-emu/ArticBaseServer
synced 2025-11-07 15:40:06 +01:00
10 lines
461 B
C++
10 lines
461 B
C++
#pragma once
|
|
#include "3ds.h"
|
|
|
|
Result FSUSER_NewSetSaveDataSecureValue(FS_Archive archive, u64 value, FS_SecureValueSlot slot, bool flush);
|
|
|
|
Result FSUSER_NewGetSaveDataSecureValue(bool* exists, bool* isGamecard, u64* value, FS_Archive archive, FS_SecureValueSlot slot);
|
|
|
|
Result FSUSER_SetThisSaveDataSecureValue(u64 value, FS_SecureValueSlot slot);
|
|
|
|
Result FSUSER_GetThisSaveDataSecureValue(bool* exists, bool* isGamecard, u64* value, FS_SecureValueSlot slot); |