mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-25 08:49:09 +00:00
a41a98028a
Signed-off-by: lizzie <lizzie@eden-emu.dev> - [x] I have read and followed the [Contribution Guidelines](https://git.eden-emu.dev/eden-emu/eden/src/branch/master/CONTRIBUTING.md#code-contributions). - [x] I have read and followed the [AI Policy](https://git.eden-emu.dev/eden-emu/eden/src/branch/master/docs/policies/AI.md) - [x] I have read and followed the [Coding Guidelines](https://git.eden-emu.dev/eden-emu/eden/src/branch/master/docs/policies/Coding.md) to the best of my ability. ------------------- this PR adds various missing services (acc:e, acc:e:u1) to expand homebrew compatibility notably this also fixes NPad related crashes due to nullref Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/4264 Reviewed-by: Maufeat <sahyno1996@gmail.com> Reviewed-by: CamilleLaVey <camillelavey99@gmail.com>
39 lines
839 B
C++
39 lines
839 B
C++
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
namespace Core {
|
|
class System;
|
|
}
|
|
|
|
namespace Service::Glue {
|
|
|
|
class ECTX_W final : public ServiceFramework<ECTX_W> {
|
|
public:
|
|
explicit ECTX_W(Core::System& system_);
|
|
~ECTX_W() override;
|
|
};
|
|
|
|
class ECTX_R final : public ServiceFramework<ECTX_R> {
|
|
public:
|
|
explicit ECTX_R(Core::System& system_);
|
|
~ECTX_R() override;
|
|
};
|
|
|
|
class ECTX_AW final : public ServiceFramework<ECTX_AW> {
|
|
public:
|
|
explicit ECTX_AW(Core::System& system_);
|
|
~ECTX_AW() override;
|
|
|
|
private:
|
|
void CreateContextRegistrar(HLERequestContext& ctx);
|
|
};
|
|
|
|
} // namespace Service::Glue
|