summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/pl_u.h
diff options
context:
space:
mode:
authorDavid <25727384+ogniK5377@users.noreply.github.com>2019-09-22 08:09:22 +0200
committerGitHub <noreply@github.com>2019-09-22 08:09:22 +0200
commitfa1c60c33ef88c6cd0b72da46842dc9098db712d (patch)
tree0e0ac1e013ea4003d116b30ee968eaf26005d210 /src/core/hle/service/ns/pl_u.h
parentMerge pull request #2886 from MysticExile/dynarmic (diff)
parentpl_u: Use kernel physical memory (diff)
downloadyuzu-fa1c60c33ef88c6cd0b72da46842dc9098db712d.tar
yuzu-fa1c60c33ef88c6cd0b72da46842dc9098db712d.tar.gz
yuzu-fa1c60c33ef88c6cd0b72da46842dc9098db712d.tar.bz2
yuzu-fa1c60c33ef88c6cd0b72da46842dc9098db712d.tar.lz
yuzu-fa1c60c33ef88c6cd0b72da46842dc9098db712d.tar.xz
yuzu-fa1c60c33ef88c6cd0b72da46842dc9098db712d.tar.zst
yuzu-fa1c60c33ef88c6cd0b72da46842dc9098db712d.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ns/pl_u.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/ns/pl_u.h b/src/core/hle/service/ns/pl_u.h
index 35ca424d2..7e9fe6220 100644
--- a/src/core/hle/service/ns/pl_u.h
+++ b/src/core/hle/service/ns/pl_u.h
@@ -5,6 +5,7 @@
#pragma once
#include <memory>
+#include "core/hle/kernel/physical_memory.h"
#include "core/hle/service/service.h"
namespace Service {
@@ -15,6 +16,8 @@ class FileSystemController;
namespace NS {
+void EncryptSharedFont(const std::vector<u8>& input, Kernel::PhysicalMemory& output);
+
class PL_U final : public ServiceFramework<PL_U> {
public:
PL_U(FileSystem::FileSystemController& fsc);