summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/btdrv/btdrv.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-27 00:00:50 +0200
committerLioncash <mathew1800@gmail.com>2018-07-27 00:06:17 +0200
commitf49248437e2ae65f5f55dd152ac22278682227a9 (patch)
treea4bee9346a4e2a4b8f336f919c3bec68ed8c16e2 /src/core/hle/service/btdrv/btdrv.h
parentMerge pull request #836 from FearlessTobi/port-3594 (diff)
downloadyuzu-f49248437e2ae65f5f55dd152ac22278682227a9.tar
yuzu-f49248437e2ae65f5f55dd152ac22278682227a9.tar.gz
yuzu-f49248437e2ae65f5f55dd152ac22278682227a9.tar.bz2
yuzu-f49248437e2ae65f5f55dd152ac22278682227a9.tar.lz
yuzu-f49248437e2ae65f5f55dd152ac22278682227a9.tar.xz
yuzu-f49248437e2ae65f5f55dd152ac22278682227a9.tar.zst
yuzu-f49248437e2ae65f5f55dd152ac22278682227a9.zip
Diffstat (limited to 'src/core/hle/service/btdrv/btdrv.h')
-rw-r--r--src/core/hle/service/btdrv/btdrv.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/hle/service/btdrv/btdrv.h b/src/core/hle/service/btdrv/btdrv.h
new file mode 100644
index 000000000..164e56f43
--- /dev/null
+++ b/src/core/hle/service/btdrv/btdrv.h
@@ -0,0 +1,16 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+namespace Service::SM {
+class ServiceManager;
+}
+
+namespace Service::BtDrv {
+
+/// Registers all BtDrv services with the specified service manager.
+void InstallInterfaces(SM::ServiceManager& sm);
+
+} // namespace Service::BtDrv