mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-17 05:40:11 +00:00
9175b00e7d
8.0.0+ identical version of apm
21 lines
408 B
C++
21 lines
408 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 Module final {
|
|
public:
|
|
Module();
|
|
~Module();
|
|
};
|
|
|
|
/// Registers all AM services with the specified service manager.
|
|
void InstallInterfaces(Core::System& system);
|
|
|
|
} // namespace Service::APM
|