2018-01-13 22:22:39 +01:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2017-10-15 04:18:42 +02:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-10-19 03:41:24 +02:00
|
|
|
#include <vector>
|
|
|
|
#include "core/hle/kernel/kernel.h"
|
2017-10-15 04:18:42 +02:00
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2018-04-20 03:41:44 +02:00
|
|
|
namespace Service::LM {
|
2017-10-15 04:18:42 +02:00
|
|
|
|
|
|
|
class LM final : public ServiceFramework<LM> {
|
|
|
|
public:
|
2017-12-28 21:27:30 +01:00
|
|
|
LM();
|
|
|
|
~LM() = default;
|
2017-10-15 04:18:42 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
void Initialize(Kernel::HLERequestContext& ctx);
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Registers all LM services with the specified service manager.
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager);
|
|
|
|
|
2018-04-20 03:41:44 +02:00
|
|
|
} // namespace Service::LM
|