2016-03-30 13:52:59 +01:00
|
|
|
// 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"
|
|
|
|
|
2019-02-19 01:34:18 +00:00
|
|
|
namespace HLE::Applets {
|
2016-03-30 13:52:59 +01:00
|
|
|
|
|
|
|
class ErrEula final : public Applet {
|
|
|
|
public:
|
2018-01-25 13:39:54 +00:00
|
|
|
explicit ErrEula(Service::APT::AppletId id, std::weak_ptr<Service::APT::AppletManager> manager)
|
|
|
|
: Applet(id, std::move(manager)) {}
|
2016-03-30 13:52:59 +01:00
|
|
|
|
|
|
|
ResultCode ReceiveParameter(const Service::APT::MessageParameter& parameter) override;
|
|
|
|
ResultCode StartImpl(const Service::APT::AppletStartupParameter& parameter) override;
|
|
|
|
void Update() override;
|
|
|
|
|
2016-12-07 22:11:39 +00:00
|
|
|
private:
|
2016-03-30 13:52:59 +01:00
|
|
|
/// This SharedMemory will be created when we receive the LibAppJustStarted message.
|
2016-09-18 01:38:01 +01:00
|
|
|
/// It holds the framebuffer info retrieved by the application with
|
|
|
|
/// GSPGPU::ImportDisplayCaptureInfo
|
2019-03-23 20:04:19 +00:00
|
|
|
std::shared_ptr<Kernel::SharedMemory> framebuffer_memory;
|
2016-03-30 13:52:59 +01:00
|
|
|
};
|
|
|
|
|
2019-02-19 01:34:18 +00:00
|
|
|
} // namespace HLE::Applets
|