summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/lm/lm.h
blob: 9c15c2e5f05ae897e519c985974aa32175bf9de2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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::LM {

class LM final : public ServiceFramework<LM> {
public:
    LM();
    ~LM() = default;

private:
    void OpenLogger(Kernel::HLERequestContext& ctx);
};

/// Registers all LM services with the specified service manager.
void InstallInterfaces(SM::ServiceManager& service_manager);

} // namespace Service::LM