yuzu/src/core/hle/service/nifm/nifm.h

20 lines
415 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
2019-09-21 11:07:13 +02:00
namespace Core {
class System;
}
namespace Service::SM {
class ServiceManager;
}
namespace Service::NIFM {
/// Registers all NIFM services with the specified service manager.
2019-09-21 11:07:13 +02:00
void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system);
} // namespace Service::NIFM