diff options
Diffstat (limited to 'src/core/hle/service/ns/pl_u.h')
| -rw-r--r-- | src/core/hle/service/ns/pl_u.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/ns/pl_u.h b/src/core/hle/service/ns/pl_u.h index a8aa358a2..27161bd7a 100644 --- a/src/core/hle/service/ns/pl_u.h +++ b/src/core/hle/service/ns/pl_u.h @@ -5,7 +5,7 @@ #pragma once #include <memory> -#include "core/hle/kernel/physical_memory.h" +#include <vector> #include "core/hle/service/service.h" namespace Service { @@ -16,6 +16,8 @@ class FileSystemController; namespace NS { +void EncryptSharedFont(const std::vector<u32>& input, std::vector<u8>& output, std::size_t& offset); + class PL_U final : public ServiceFramework<PL_U> { public: explicit PL_U(Core::System& system); |
