summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/lm/lm.h
blob: 266019c30ccbf9dde6260857e737ec53f9742641 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

namespace Core {
class System;
}

namespace Service::LM {

/// Registers all LM services with the specified service manager.
void InstallInterfaces(Core::System& system);

} // namespace Service::LM