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