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-26 22:00:50 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace Service::SM {
|
|
|
|
class ServiceManager;
|
|
|
|
}
|
|
|
|
|
2019-09-21 08:42:38 +00:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2018-07-26 22:00:50 +00:00
|
|
|
namespace Service::BtDrv {
|
|
|
|
|
|
|
|
/// Registers all BtDrv services with the specified service manager.
|
2019-09-21 08:42:38 +00:00
|
|
|
void InstallInterfaces(SM::ServiceManager& sm, Core::System& system);
|
2018-07-26 22:00:50 +00:00
|
|
|
|
|
|
|
} // namespace Service::BtDrv
|