mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-08 11:31:43 +00:00
39 lines
No EOL
1.2 KiB
C++
39 lines
No EOL
1.2 KiB
C++
#pragma once
|
|
|
|
#include "constants.hpp"
|
|
#include <regex>
|
|
#include <set>
|
|
#include <switch.h>
|
|
#include <borealis.hpp>
|
|
#include <json.hpp>
|
|
|
|
namespace util {
|
|
|
|
typedef char NsApplicationName[0x201];
|
|
typedef uint8_t NsApplicationIcon[0x20000];
|
|
|
|
struct app {
|
|
uint64_t tid;
|
|
NsApplicationName name;
|
|
NsApplicationIcon icon;
|
|
brls::ListItem* listItem;
|
|
};
|
|
|
|
void clearConsole();
|
|
bool isArchive(const std::string& path);
|
|
void downloadArchive(std::string url, archiveType type);
|
|
void extractArchive(archiveType type, std::string tag = "0");
|
|
std::string formatListItemTitle(const std::string &str, size_t maxScore = 140);
|
|
std::string formatApplicationId(u64 ApplicationId);
|
|
std::vector<std::string> fetchPayloads();
|
|
void shutDown(bool reboot = false);
|
|
void rebootToPayload(const std::string& path);
|
|
int showDialogBox(std::string text, std::string opt);
|
|
int showDialogBox(std::string text, std::string opt1, std::string opt2);
|
|
std::string getLatestTag(const std::string& url);
|
|
void saveVersion(std::string version, const std::string& path);
|
|
std::string readVersion(const std::string& path);
|
|
bool isErista();
|
|
void removeSysmodulesFlags(const std::string& directory);
|
|
|
|
} |