mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-16 15:37:47 +00:00
glue: Add ectx:aw placeholder
This commit is contained in:
parent
296172950e
commit
9ceb9df088
4 changed files with 49 additions and 0 deletions
22
src/core/hle/service/glue/ectx.cpp
Normal file
22
src/core/hle/service/glue/ectx.cpp
Normal file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue