diff options
| author | german77 <juangerman-13@hotmail.com> | 2021-04-24 10:26:30 -0500 |
|---|---|---|
| committer | german77 <juangerman-13@hotmail.com> | 2021-04-24 10:50:25 -0500 |
| commit | a02c4686c3db3babe75d0d26636bfef09b36db2b (patch) | |
| tree | 034cc6429ee3bcbad532429c6ef36db4dadb60a1 /src/core/hle/service/glue/ectx.h | |
| parent | cdce1edf74fbaad08f77f8dcd0722dbbf6e0f2a5 (diff) | |
glue: Add ectx:aw placeholder
Diffstat (limited to 'src/core/hle/service/glue/ectx.h')
| -rw-r--r-- | src/core/hle/service/glue/ectx.h | 21 |
1 files changed, 21 insertions, 0 deletions
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 |
