Lockpick_RCM/source/config.h

50 lines
1.2 KiB
C
Raw Normal View History

2019-09-17 06:18:41 +02:00
/*
* Copyright (c) 2018-2019 CTCaer
*
* 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/>.
*/
#ifndef _CONFIG_H_
#define _CONFIG_H_
2020-06-26 22:17:06 +02:00
#include <utils/types.h>
2019-09-17 06:18:41 +02:00
typedef struct _hekate_config
{
// Non-volatile config.
u32 autoboot;
u32 autoboot_list;
u32 bootwait;
u32 backlight;
u32 autohosoff;
u32 autonogc;
2020-04-16 00:18:58 +02:00
u32 updater2p;
u32 bootprotect;
2019-09-17 06:18:41 +02:00
// Global temporary config.
bool t210b01;
bool aes_slots_new;
2019-09-17 06:18:41 +02:00
bool emummc_force_disable;
bool rcm_patched;
u32 errors;
} hekate_config;
void set_default_configuration();
2019-12-09 03:17:46 +01:00
int create_config_entry();
void config_autoboot();
void config_bootdelay();
void config_backlight();
void config_auto_hos_poweroff();
void config_nogc();
2019-09-17 06:18:41 +02:00
#endif /* _CONFIG_H_ */