2018-02-02 03:31:27 -08:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-09-21 02:07:13 -07:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2020-11-26 12:19:08 -08:00
|
|
|
namespace Service::SM {
|
|
|
|
class ServiceManager;
|
|
|
|
}
|
|
|
|
|
2018-04-19 18:41:44 -07:00
|
|
|
namespace Service::NIFM {
|
2018-02-02 03:31:27 -08:00
|
|
|
|
2018-07-25 14:07:32 -07:00
|
|
|
/// Registers all NIFM services with the specified service manager.
|
2019-09-21 02:07:13 -07:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system);
|
2018-02-02 03:31:27 -08:00
|
|
|
|
2018-04-19 18:41:44 -07:00
|
|
|
} // namespace Service::NIFM
|