From d0bf7df5ba11f19314b5b08d264de79bce691a45 Mon Sep 17 00:00:00 2001 From: mailwl Date: Tue, 31 Jan 2017 12:16:58 +0300 Subject: HLE/Applets: Stub Mint (eShop) Applet (#2463) This allows Phoenix Wright - Dual Destinies to boot. --- src/core/hle/applets/mint.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/core/hle/applets/mint.h (limited to 'src/core/hle/applets/mint.h') diff --git a/src/core/hle/applets/mint.h b/src/core/hle/applets/mint.h new file mode 100644 index 000000000..d23dc40f9 --- /dev/null +++ b/src/core/hle/applets/mint.h @@ -0,0 +1,29 @@ +// Copyright 2016 Citra Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#include "core/hle/applets/applet.h" +#include "core/hle/kernel/shared_memory.h" + +namespace HLE { +namespace Applets { + +class Mint final : public Applet { +public: + explicit Mint(Service::APT::AppletId id) : Applet(id) {} + + ResultCode ReceiveParameter(const Service::APT::MessageParameter& parameter) override; + ResultCode StartImpl(const Service::APT::AppletStartupParameter& parameter) override; + void Update() override; + +private: + /// This SharedMemory will be created when we receive the Request message. + /// It holds the framebuffer info retrieved by the application with + /// GSPGPU::ImportDisplayCaptureInfo + Kernel::SharedPtr framebuffer_memory; +}; + +} // namespace Applets +} // namespace HLE -- cgit v1.2.3