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