Services/NS: Port ns:s to the new service framework.

This commit is contained in:
Subv
2017-08-28 20:26:07 -05:00
parent 4693d23efb
commit 3d86e3afc4
7 changed files with 77 additions and 42 deletions

View File

@ -0,0 +1,16 @@
// Copyright 2017 Citra Emulator Project
// 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