mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-05 06:47:53 +00:00
12ab5a0547
Adds the basic skeleton of the apm:sys service based off the information on Switch Brew.
30 lines
644 B
C++
30 lines
644 B
C++
// Copyright 2018 yuzu emulator team
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
namespace Service::APM {
|
|
|
|
class APM final : public ServiceFramework<APM> {
|
|
public:
|
|
explicit APM(std::shared_ptr<Module> apm, const char* name);
|
|
~APM() = default;
|
|
|
|
private:
|
|
void OpenSession(Kernel::HLERequestContext& ctx);
|
|
|
|
std::shared_ptr<Module> apm;
|
|
};
|
|
|
|
class APM_Sys final : public ServiceFramework<APM_Sys> {
|
|
public:
|
|
explicit APM_Sys();
|
|
|
|
private:
|
|
void GetPerformanceEvent(Kernel::HLERequestContext& ctx);
|
|
};
|
|
|
|
} // namespace Service::APM
|