1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-30 19:03:24 +01:00
Atmosphere/exosphere/src/configitem.h

40 lines
1.1 KiB
C
Raw Normal View History

#ifndef EXOSPHERE_CFG_ITEM_H
#define EXOSPHERE_CFG_ITEM_H
2018-02-23 03:58:39 +00:00
#include <stdbool.h>
#include <stdint.h>
2018-03-05 22:59:46 +00:00
typedef enum {
CONFIGITEM_DISABLEPROGRAMVERIFICATION = 1,
CONFIGITEM_DRAMID = 2,
CONFIGITEM_SECURITYENGINEIRQ = 3,
CONFIGITEM_VERSION = 4,
CONFIGITEM_HARDWARETYPE = 5,
CONFIGITEM_ISRETAIL = 6,
CONFIGITEM_ISRECOVERYBOOT = 7,
CONFIGITEM_DEVICEID = 8,
CONFIGITEM_BOOTREASON = 9,
CONFIGITEM_MEMORYARRANGE = 10,
CONFIGITEM_ISDEBUGMODE = 11,
CONFIGITEM_KERNELMEMORYCONFIGURATION = 12,
2018-03-09 10:54:36 +00:00
CONFIGITEM_BATTERYPROFILE = 13,
CONFIGITEM_ODM4BIT10_4X = 14,
CONFIGITEM_NEWHARDWARETYPE_5X = 15,
CONFIGITEM_NEWKEYGENERATION_5X = 16,
CONFIGITEM_PACKAGE2HASH_5X = 17,
/* These are unofficial, for usage by Exosphere. */
CONFIGITEM_EXOSPHERE_VERSION = 65000
2018-03-05 22:59:46 +00:00
} ConfigItem;
2018-03-05 22:59:46 +00:00
uint32_t configitem_set(ConfigItem item, uint64_t value);
uint32_t configitem_get(ConfigItem item, uint64_t *p_outvalue);
2018-02-23 03:58:39 +00:00
bool configitem_is_recovery_boot(void);
bool configitem_is_retail(void);
2018-02-26 10:00:02 +00:00
bool configitem_should_profile_battery(void);
2018-02-20 09:02:01 +00:00
2018-03-02 20:16:30 +00:00
uint64_t configitem_get_hardware_type(void);
#endif