2018-01-13 21:22:39 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2017-10-15 02:18:42 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-10-19 01:41:24 +00:00
|
|
|
#include <vector>
|
|
|
|
#include "core/hle/kernel/kernel.h"
|
2017-10-15 02:18:42 +00:00
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::LM {
|
2017-10-15 02:18:42 +00:00
|
|
|
|
|
|
|
class LM final : public ServiceFramework<LM> {
|
|
|
|
public:
|
2017-12-28 20:27:30 +00:00
|
|
|
LM();
|
|
|
|
~LM() = default;
|
2017-10-15 02:18:42 +00: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 01:41:44 +00:00
|
|
|
} // namespace Service::LM
|