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

#pragma once

namespace Core {
class System;
} // namespace Core

namespace Service::Glue {

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

} // namespace Service::Glue