Awoo-Installer/include/util/config.hpp

24 lines
639 B
C++
Raw Normal View History

2019-10-26 04:38:12 +00:00
#pragma once
#include <vector>
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-19 02:43:14 +00:00
static const std::string appVersion = "1.3.0";
2019-11-16 02:18:01 +00:00
extern std::string sigPatchesUrl;
2019-12-12 17:36:10 +00:00
extern std::string gAuthKey;
extern std::vector<std::string> updateInfo;
2019-12-21 00:08:54 +00:00
extern int languageSetting;
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;
extern bool autoUpdate;
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();
}