pl_u: Implement basic shared font loading from RAM dump.

This commit is contained in:
bunnei
2018-02-14 22:22:41 -05:00
parent fa58d95027
commit 42c062c620
6 changed files with 182 additions and 0 deletions

View File

@ -0,0 +1,16 @@
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/service.h"
namespace Service {
namespace NS {
/// Registers all NS services with the specified service manager.
void InstallInterfaces(SM::ServiceManager& service_manager);
} // namespace NS
} // namespace Service