2018-09-07 16:00:13 +01:00
|
|
|
/*
|
2019-04-08 03:00:49 +01:00
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
2018-09-07 16:00:13 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2018-05-07 10:50:33 +01:00
|
|
|
#pragma once
|
|
|
|
#include <stratosphere.hpp>
|
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::pm::bm {
|
2019-06-29 10:20:36 +01:00
|
|
|
|
2019-10-15 06:49:06 +01:00
|
|
|
class BootModeService final : public sf::IServiceObject {
|
2019-06-29 10:20:36 +01:00
|
|
|
private:
|
|
|
|
enum class CommandId {
|
|
|
|
GetBootMode = 0,
|
|
|
|
SetMaintenanceBoot = 1,
|
|
|
|
};
|
|
|
|
private:
|
|
|
|
/* Actual command implementations. */
|
2019-10-15 06:49:06 +01:00
|
|
|
void GetBootMode(sf::Out<u32> out);
|
2019-06-29 10:20:36 +01:00
|
|
|
void SetMaintenanceBoot();
|
|
|
|
public:
|
|
|
|
DEFINE_SERVICE_DISPATCH_TABLE {
|
2019-10-15 06:49:06 +01:00
|
|
|
MAKE_SERVICE_COMMAND_META(GetBootMode),
|
|
|
|
MAKE_SERVICE_COMMAND_META(SetMaintenanceBoot),
|
2019-06-29 10:20:36 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|