summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/btm/btm_user.h
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2024-02-15 18:05:36 +0100
committerNarr the Reg <juangerman-13@hotmail.com>2024-02-16 19:15:06 +0100
commit9c0724b27073e5f6cdf7ec9d10852cc5a073d863 (patch)
treeed79eb5d39128ec70409cf71300f704d5f740be5 /src/core/hle/service/btm/btm_user.h
parentMerge pull request #13016 from german77/set-interface2 (diff)
downloadyuzu-9c0724b27073e5f6cdf7ec9d10852cc5a073d863.tar
yuzu-9c0724b27073e5f6cdf7ec9d10852cc5a073d863.tar.gz
yuzu-9c0724b27073e5f6cdf7ec9d10852cc5a073d863.tar.bz2
yuzu-9c0724b27073e5f6cdf7ec9d10852cc5a073d863.tar.lz
yuzu-9c0724b27073e5f6cdf7ec9d10852cc5a073d863.tar.xz
yuzu-9c0724b27073e5f6cdf7ec9d10852cc5a073d863.tar.zst
yuzu-9c0724b27073e5f6cdf7ec9d10852cc5a073d863.zip
Diffstat (limited to 'src/core/hle/service/btm/btm_user.h')
-rw-r--r--src/core/hle/service/btm/btm_user.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/core/hle/service/btm/btm_user.h b/src/core/hle/service/btm/btm_user.h
new file mode 100644
index 000000000..d9ee5db45
--- /dev/null
+++ b/src/core/hle/service/btm/btm_user.h
@@ -0,0 +1,25 @@
+// 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 IBtmUserCore;
+
+class IBtmUser final : public ServiceFramework<IBtmUser> {
+public:
+ explicit IBtmUser(Core::System& system_);
+ ~IBtmUser() override;
+
+private:
+ Result GetCore(OutInterface<IBtmUserCore> out_interface);
+};
+
+} // namespace Service::BTM