2022-04-23 04:59:50 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-02-02 14:31:27 +03:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-09-21 19:07:13 +10:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2020-11-26 15:19:08 -05:00
|
|
|
namespace Service::SM {
|
|
|
|
class ServiceManager;
|
|
|
|
}
|
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
namespace Service::NIFM {
|
2018-02-02 14:31:27 +03:00
|
|
|
|
2018-07-25 17:07:32 -04:00
|
|
|
/// Registers all NIFM services with the specified service manager.
|
2019-09-21 19:07:13 +10:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system);
|
2018-02-02 14:31:27 +03:00
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
} // namespace Service::NIFM
|