yuzu-mainline/src/core/hle/service/btm/btm.h

19 lines
333 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 01:42:50 -07:00
namespace Core {
class System;
};
namespace Service::BTM {
2019-09-21 01:42:50 -07:00
void InstallInterfaces(SM::ServiceManager& sm, Core::System& system);
} // namespace Service::BTM