2016-03-30 12:52:59 +00: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"
|
|
|
|
|
|
|
|
namespace HLE {
|
|
|
|
namespace Applets {
|
|
|
|
|
|
|
|
class ErrEula final : public Applet {
|
|
|
|
public:
|
2016-09-18 00:38:01 +00:00
|
|
|
explicit ErrEula(Service::APT::AppletId id) : Applet(id) {
|
|
|
|
}
|
2016-03-30 12:52:59 +00:00
|
|
|
|
|
|
|
ResultCode ReceiveParameter(const Service::APT::MessageParameter& parameter) override;
|
|
|
|
ResultCode StartImpl(const Service::APT::AppletStartupParameter& parameter) override;
|
|
|
|
void Update() override;
|
2016-09-18 00:38:01 +00:00
|
|
|
bool IsRunning() const override {
|
|
|
|
return started;
|
|
|
|
}
|
2016-03-30 12:52:59 +00:00
|
|
|
|
|
|
|
/// This SharedMemory will be created when we receive the LibAppJustStarted message.
|
2016-09-18 00:38:01 +00:00
|
|
|
/// It holds the framebuffer info retrieved by the application with
|
|
|
|
/// GSPGPU::ImportDisplayCaptureInfo
|
2016-03-30 12:52:59 +00:00
|
|
|
Kernel::SharedPtr<Kernel::SharedMemory> framebuffer_memory;
|
2016-09-18 00:38:01 +00:00
|
|
|
|
2016-03-30 12:52:59 +00:00
|
|
|
private:
|
|
|
|
/// Whether this applet is currently running instead of the host application or not.
|
|
|
|
bool started = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Applets
|
|
|
|
} // namespace HLE
|