Awoo-Installer/include/util/config.hpp

19 lines
717 B
C++
Raw Normal View History

2019-10-26 04:38:12 +00:00
#pragma once
namespace inst::config {
2019-11-16 02:18:01 +00:00
static const std::string appDir = "sdmc:/switch/Awoo-Installer";
static const std::string configPath = appDir + "/config.ini";
2019-12-06 01:50:24 +00:00
static const std::string appVersion = "1.2.1";
2019-11-16 02:18:01 +00:00
static const std::string gAuthKey = {0x41,0x49,0x7a,0x61,0x53,0x79,0x42,0x4d,0x71,0x76,0x34,0x64,0x58,0x6e,0x54,0x4a,0x4f,0x47,0x51,0x74,0x5a,0x5a,0x53,0x33,0x43,0x42,0x6a,0x76,0x66,0x37,0x34,0x38,0x51,0x76,0x78,0x53,0x7a,0x46,0x30};
extern std::string sigPatchesUrl;
2019-10-26 04:38:12 +00:00
extern bool ignoreReqVers;
2019-11-16 02:18:01 +00:00
extern bool validateNCAs;
2019-11-17 20:38:01 +00:00
extern bool overClock;
extern bool deletePrompt;
2019-10-26 04:38:12 +00:00
extern bool gayMode;
2019-12-01 06:02:31 +00:00
extern bool usbAck;
2019-10-26 04:38:12 +00:00
void parseConfig();
void setConfig();
}