summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/btm/btm_debug.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-02-19 20:49:42 +0100
committerGitHub <noreply@github.com>2024-02-19 20:49:42 +0100
commit8d5473e67c202768673d4d9f3e59df50501f30e4 (patch)
tree2c6ba25f4778db3ff9e60f5c84abcb98a15b751b /src/core/hle/service/btm/btm_debug.h
parentandroid: Fix overlay visibility reset (#13083) (diff)
parentservice: btm: Implement function needed by QLaunch (diff)
downloadyuzu-8d5473e67c202768673d4d9f3e59df50501f30e4.tar
yuzu-8d5473e67c202768673d4d9f3e59df50501f30e4.tar.gz
yuzu-8d5473e67c202768673d4d9f3e59df50501f30e4.tar.bz2
yuzu-8d5473e67c202768673d4d9f3e59df50501f30e4.tar.lz
yuzu-8d5473e67c202768673d4d9f3e59df50501f30e4.tar.xz
yuzu-8d5473e67c202768673d4d9f3e59df50501f30e4.tar.zst
yuzu-8d5473e67c202768673d4d9f3e59df50501f30e4.zip
Diffstat (limited to 'src/core/hle/service/btm/btm_debug.h')
-rw-r--r--src/core/hle/service/btm/btm_debug.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/core/hle/service/btm/btm_debug.h b/src/core/hle/service/btm/btm_debug.h
new file mode 100644
index 000000000..bf4f7e14f
--- /dev/null
+++ b/src/core/hle/service/btm/btm_debug.h
@@ -0,0 +1,21 @@
+// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+#pragma once
+
+#include "core/hle/service/cmif_types.h"
+#include "core/hle/service/service.h"
+
+namespace Core {
+class System;
+}
+
+namespace Service::BTM {
+
+class IBtmDebug final : public ServiceFramework<IBtmDebug> {
+public:
+ explicit IBtmDebug(Core::System& system_);
+ ~IBtmDebug() override;
+};
+
+} // namespace Service::BTM