2018-01-13 21:22:39 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2017-10-15 02:50:04 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-01-22 18:46:36 +00:00
|
|
|
#include <memory>
|
2017-10-15 02:50:04 +00:00
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
|
|
|
namespace Service {
|
2018-01-22 18:46:36 +00:00
|
|
|
namespace NVFlinger {
|
|
|
|
class NVFlinger;
|
|
|
|
}
|
|
|
|
|
2017-10-15 02:50:04 +00:00
|
|
|
namespace AM {
|
|
|
|
|
|
|
|
/// Registers all AM services with the specified service manager.
|
2018-01-22 18:46:36 +00:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager,
|
|
|
|
std::shared_ptr<NVFlinger::NVFlinger> nvflinger);
|
2017-10-15 02:50:04 +00:00
|
|
|
|
|
|
|
} // namespace AM
|
|
|
|
} // namespace Service
|