diff options
author | german77 <juangerman-13@hotmail.com> | 2021-04-24 17:26:30 +0200 |
---|---|---|
committer | german77 <juangerman-13@hotmail.com> | 2021-04-24 17:50:25 +0200 |
commit | a02c4686c3db3babe75d0d26636bfef09b36db2b (patch) | |
tree | 034cc6429ee3bcbad532429c6ef36db4dadb60a1 /src/core/hle/service/glue | |
parent | Merge pull request #6224 from Morph1984/hid_InitializeSevenSixAxisSensor (diff) | |
download | yuzu-a02c4686c3db3babe75d0d26636bfef09b36db2b.tar yuzu-a02c4686c3db3babe75d0d26636bfef09b36db2b.tar.gz yuzu-a02c4686c3db3babe75d0d26636bfef09b36db2b.tar.bz2 yuzu-a02c4686c3db3babe75d0d26636bfef09b36db2b.tar.lz yuzu-a02c4686c3db3babe75d0d26636bfef09b36db2b.tar.xz yuzu-a02c4686c3db3babe75d0d26636bfef09b36db2b.tar.zst yuzu-a02c4686c3db3babe75d0d26636bfef09b36db2b.zip |
Diffstat (limited to 'src/core/hle/service/glue')
-rw-r--r-- | src/core/hle/service/glue/ectx.cpp | 22 | ||||
-rw-r--r-- | src/core/hle/service/glue/ectx.h | 21 | ||||
-rw-r--r-- | src/core/hle/service/glue/glue.cpp | 4 |
3 files changed, 47 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 diff --git a/src/core/hle/service/glue/ectx.h b/src/core/hle/service/glue/ectx.h new file mode 100644 index 000000000..b275e808a --- /dev/null +++ b/src/core/hle/service/glue/ectx.h @@ -0,0 +1,21 @@ +// Copyright 2021 yuzu Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#include "core/hle/service/service.h" + +namespace Core { +class System; +} + +namespace Service::Glue { + +class ECTX_AW final : public ServiceFramework<ECTX_AW> { +public: + explicit ECTX_AW(Core::System& system_); + ~ECTX_AW() override; +}; + +} // namespace Service::Glue diff --git a/src/core/hle/service/glue/glue.cpp b/src/core/hle/service/glue/glue.cpp index 4eafbe5fa..a08dc9758 100644 --- a/src/core/hle/service/glue/glue.cpp +++ b/src/core/hle/service/glue/glue.cpp @@ -6,6 +6,7 @@ #include "core/core.h" #include "core/hle/service/glue/arp.h" #include "core/hle/service/glue/bgtc.h" +#include "core/hle/service/glue/ectx.h" #include "core/hle/service/glue/glue.h" namespace Service::Glue { @@ -20,6 +21,9 @@ void InstallInterfaces(Core::System& system) { // BackGround Task Controller std::make_shared<BGTC_T>(system)->InstallAsService(system.ServiceManager()); std::make_shared<BGTC_SC>(system)->InstallAsService(system.ServiceManager()); + + // Error Context + std::make_shared<ECTX_AW>(system)->InstallAsService(system.ServiceManager()); } } // namespace Service::Glue |