summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/prepo/prepo.h
blob: 77457b7bdd371e7499955f4fe42f94a6472a3595 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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