2022-04-23 08:59:50 +00:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-07-26 06:17:15 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-09-21 09:11:52 +00:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2020-11-26 20:19:08 +00:00
|
|
|
namespace Service::SM {
|
|
|
|
class ServiceManager;
|
|
|
|
}
|
|
|
|
|
2018-07-26 06:17:15 +00:00
|
|
|
namespace Service::NIM {
|
|
|
|
|
2019-09-21 09:11:52 +00:00
|
|
|
void InstallInterfaces(SM::ServiceManager& sm, Core::System& system);
|
2018-07-26 06:17:15 +00:00
|
|
|
|
|
|
|
} // namespace Service::NIM
|