aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/glue/ectx.cpp
diff options
context:
space:
mode:
authorMat M <mathew1800@gmail.com>2021-04-24 12:37:12 -0400
committerGitHub <noreply@github.com>2021-04-24 12:37:12 -0400
commit98fb36cb0a230b9a968818490a238622de2ed6d4 (patch)
treeb472d6a53cd1aff5ff9a83a46388abea3d9695a6 /src/core/hle/service/glue/ectx.cpp
parent1acd807176c64d9020ee1280b65a09dec9dcddb0 (diff)
parenta02c4686c3db3babe75d0d26636bfef09b36db2b (diff)
Merge pull request #6235 from german77/ectx_aw
glue: Add ectx:aw service placeholder
Diffstat (limited to 'src/core/hle/service/glue/ectx.cpp')
-rw-r--r--src/core/hle/service/glue/ectx.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/core/hle/service/glue/ectx.cpp b/src/core/hle/service/glue/ectx.cpp
new file mode 100644
index 000000000..249c6f003
--- /dev/null
+++ b/src/core/hle/service/glue/ectx.cpp
@@ -0,0 +1,22 @@
+// Copyright 2021 yuzu Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "core/hle/service/glue/ectx.h"
+
+namespace Service::Glue {
+
+ECTX_AW::ECTX_AW(Core::System& system_) : ServiceFramework{system_, "ectx:aw"} {
+ // clang-format off
+ static const FunctionInfo functions[] = {
+ {0, nullptr, "CreateContextRegistrar"},
+ {1, nullptr, "CommitContext"},
+ };
+ // clang-format on
+
+ RegisterHandlers(functions);
+}
+
+ECTX_AW::~ECTX_AW() = default;
+
+} // namespace Service::Glue