mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-05 14:57:53 +00:00
23 lines
576 B
C++
23 lines
576 B
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include "core/hle/kernel/event.h"
|
|
#include "core/hle/service/service.h"
|
|
|
|
namespace Service::Playreport {
|
|
|
|
class Playreport final : public ServiceFramework<Playreport> {
|
|
public:
|
|
Playreport(const char* name);
|
|
~Playreport() = default;
|
|
|
|
private:
|
|
void SaveReportWithUser(Kernel::HLERequestContext& ctx);
|
|
};
|
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager);
|
|
|
|
}; // namespace Service::Playreport
|