2018-07-25 22:37:00 +02:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-06-27 01:07:34 +02:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
2018-07-25 22:37:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace Service::PM {
|
2019-01-28 17:44:35 +01:00
|
|
|
|
|
|
|
enum class SystemBootMode {
|
|
|
|
Normal,
|
|
|
|
Maintenance,
|
|
|
|
};
|
|
|
|
|
2018-07-25 22:37:00 +02:00
|
|
|
/// Registers all PM services with the specified service manager.
|
2019-06-27 01:07:34 +02:00
|
|
|
void InstallInterfaces(Core::System& system);
|
2018-07-25 22:37:00 +02:00
|
|
|
|
|
|
|
} // namespace Service::PM
|