2018-01-13 16:22:39 -05:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2017-10-14 22:18:42 -04:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#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
|