yuzu/src/core/hle/service/btdrv/btdrv.h

20 lines
405 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
namespace Service::SM {
class ServiceManager;
}
2019-09-21 08:42:38 +00:00
namespace Core {
class System;
}
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);
} // namespace Service::BtDrv