mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-17 04:40:07 +00:00
28 lines
591 B
C++
28 lines
591 B
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
#include "core/hle/kernel/kernel.h"
|
|
#include "core/hle/service/service.h"
|
|
|
|
namespace Service {
|
|
namespace LM {
|
|
|
|
class LM final : public ServiceFramework<LM> {
|
|
public:
|
|
LM();
|
|
~LM() = default;
|
|
|
|
private:
|
|
void Initialize(Kernel::HLERequestContext& ctx);
|
|
};
|
|
|
|
/// Registers all LM services with the specified service manager.
|
|
void InstallInterfaces(SM::ServiceManager& service_manager);
|
|
|
|
} // namespace LM
|
|
} // namespace Service
|