summaryrefslogtreecommitdiffstats
path: root/src/core/hle/applets/mint.h
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2017-01-31 10:16:58 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2017-01-31 10:16:58 +0100
commitd0bf7df5ba11f19314b5b08d264de79bce691a45 (patch)
tree2cec2e627b7e510084c3200ddc230cf347d3aa2b /src/core/hle/applets/mint.h
parentCommon/x64: remove legacy emitter and abi (#2504) (diff)
downloadyuzu-d0bf7df5ba11f19314b5b08d264de79bce691a45.tar
yuzu-d0bf7df5ba11f19314b5b08d264de79bce691a45.tar.gz
yuzu-d0bf7df5ba11f19314b5b08d264de79bce691a45.tar.bz2
yuzu-d0bf7df5ba11f19314b5b08d264de79bce691a45.tar.lz
yuzu-d0bf7df5ba11f19314b5b08d264de79bce691a45.tar.xz
yuzu-d0bf7df5ba11f19314b5b08d264de79bce691a45.tar.zst
yuzu-d0bf7df5ba11f19314b5b08d264de79bce691a45.zip
Diffstat (limited to 'src/core/hle/applets/mint.h')
-rw-r--r--src/core/hle/applets/mint.h29
1 files changed, 29 insertions, 0 deletions
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<Kernel::SharedMemory> framebuffer_memory;
+};
+
+} // namespace Applets
+} // namespace HLE