2022-04-23 08:59:50 +00:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-07-29 00:59:09 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Service::SM {
|
|
|
|
class ServiceManager;
|
|
|
|
}
|
|
|
|
|
2019-09-21 08:42:50 +00:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
};
|
|
|
|
|
2018-07-29 00:59:09 +00:00
|
|
|
namespace Service::BTM {
|
|
|
|
|
2019-09-21 08:42:50 +00:00
|
|
|
void InstallInterfaces(SM::ServiceManager& sm, Core::System& system);
|
2018-07-29 00:59:09 +00:00
|
|
|
|
|
|
|
} // namespace Service::BTM
|