mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-31 10:36:56 +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>
54 lines
1.3 KiB
C++
54 lines
1.3 KiB
C++
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "core/hle/service/spl/spl_module.h"
|
|
|
|
namespace Core {
|
|
class System;
|
|
}
|
|
|
|
namespace Service::SPL {
|
|
|
|
class SPL final : public Module::Interface {
|
|
public:
|
|
explicit SPL(Core::System& system_, std::shared_ptr<Module> module_);
|
|
~SPL() override;
|
|
};
|
|
|
|
class SPL_MIG final : public Module::Interface {
|
|
public:
|
|
explicit SPL_MIG(Core::System& system_, std::shared_ptr<Module> module_);
|
|
~SPL_MIG() override;
|
|
};
|
|
|
|
class SPL_FS final : public Module::Interface {
|
|
public:
|
|
explicit SPL_FS(Core::System& system_, std::shared_ptr<Module> module_);
|
|
~SPL_FS() override;
|
|
};
|
|
|
|
class SPL_SSL final : public Module::Interface {
|
|
public:
|
|
explicit SPL_SSL(Core::System& system_, std::shared_ptr<Module> module_);
|
|
~SPL_SSL() override;
|
|
};
|
|
|
|
class SPL_ES final : public Module::Interface {
|
|
public:
|
|
explicit SPL_ES(Core::System& system_, std::shared_ptr<Module> module_);
|
|
~SPL_ES() override;
|
|
};
|
|
|
|
class SPL_MANU final : public Module::Interface {
|
|
public:
|
|
explicit SPL_MANU(Core::System& system_, std::shared_ptr<Module> module_);
|
|
~SPL_MANU() override;
|
|
};
|
|
|
|
} // namespace Service::SPL
|