citra/src/core/hle/applets/erreula.h

29 lines
959 B
C++
Raw Normal View History

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