2022-04-23 04:59:50 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-10-14 22:18:42 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-06-29 17:17:35 -04:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
2018-07-25 22:32:42 -04:00
|
|
|
}
|
2017-10-14 22:18:42 -04:00
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
namespace Service::LM {
|
2017-10-14 22:18:42 -04:00
|
|
|
|
|
|
|
/// Registers all LM services with the specified service manager.
|
2019-06-29 17:17:35 -04:00
|
|
|
void InstallInterfaces(Core::System& system);
|
2017-10-14 22:18:42 -04:00
|
|
|
|
2018-04-19 21:41:44 -04:00
|
|
|
} // namespace Service::LM
|