2022-04-23 01:59:50 -07:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-07-25 13:37:00 -07:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-06-26 16:07:34 -07:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
2018-07-25 13:37:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace Service::PM {
|
2019-01-28 08:44:35 -08:00
|
|
|
|
|
|
|
enum class SystemBootMode {
|
|
|
|
Normal,
|
|
|
|
Maintenance,
|
|
|
|
};
|
|
|
|
|
2018-07-25 13:37:00 -07:00
|
|
|
/// Registers all PM services with the specified service manager.
|
2019-06-26 16:07:34 -07:00
|
|
|
void InstallInterfaces(Core::System& system);
|
2018-07-25 13:37:00 -07:00
|
|
|
|
|
|
|
} // namespace Service::PM
|