summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns/pl_u.h
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-09-23 15:52:49 +0200
committerZach Hilman <zachhilman@gmail.com>2019-10-13 19:46:27 +0200
commit1911f853918669f3258259b51ebc3dac19ed61ef (patch)
treeda540e440ccbff0a21a4492f2fdb1cf87cc6b878 /src/core/hle/service/ns/pl_u.h
parentpl_u: Use kernel physical memory (diff)
downloadyuzu-1911f853918669f3258259b51ebc3dac19ed61ef.tar
yuzu-1911f853918669f3258259b51ebc3dac19ed61ef.tar.gz
yuzu-1911f853918669f3258259b51ebc3dac19ed61ef.tar.bz2
yuzu-1911f853918669f3258259b51ebc3dac19ed61ef.tar.lz
yuzu-1911f853918669f3258259b51ebc3dac19ed61ef.tar.xz
yuzu-1911f853918669f3258259b51ebc3dac19ed61ef.tar.zst
yuzu-1911f853918669f3258259b51ebc3dac19ed61ef.zip
Diffstat (limited to 'src/core/hle/service/ns/pl_u.h')
-rw-r--r--src/core/hle/service/ns/pl_u.h4
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);