Atmosphere/stratosphere/pm/source/pm_boot_mode.hpp

39 lines
1.3 KiB
C++
Raw Normal View History

/*
2019-04-07 22:00:49 -04:00
* Copyright (c) 2018-2019 Atmosphère-NX
*
* 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/>.
*/
2019-06-17 18:27:29 -04:00
2018-05-03 04:58:11 -04:00
#pragma once
#include <switch.h>
#include <stratosphere.hpp>
2018-05-03 04:58:11 -04:00
enum BootModeCmd {
BootMode_Cmd_GetBootMode = 0,
BootMode_Cmd_SetMaintenanceBoot = 1
};
2019-06-17 18:27:29 -04:00
class BootModeService final : public IServiceObject {
2018-05-03 04:58:11 -04:00
private:
/* Actual commands. */
void GetBootMode(Out<u32> out);
void SetMaintenanceBoot();
2019-01-22 02:31:59 -05:00
public:
static void SetMaintenanceBootForEmbeddedBoot2();
public:
DEFINE_SERVICE_DISPATCH_TABLE {
MakeServiceCommandMeta<BootMode_Cmd_GetBootMode, &BootModeService::GetBootMode>(),
MakeServiceCommandMeta<BootMode_Cmd_SetMaintenanceBoot, &BootModeService::SetMaintenanceBoot>(),
};
};