mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-08 11:31:43 +00:00
24 lines
807 B
C++
24 lines
807 B
C++
|
#pragma once
|
||
|
|
||
|
#include <regex>
|
||
|
#include <iostream>
|
||
|
#include <set>
|
||
|
#include "download.hpp"
|
||
|
#include "extract.hpp"
|
||
|
#include "constants.hpp"
|
||
|
#include "progress_event.hpp"
|
||
|
|
||
|
CFW getCFW();
|
||
|
bool isServiceRunning(const char *serviceName);
|
||
|
std::vector<std::string> htmlProcess(std::string s, std::regex rgx);
|
||
|
void createTree(std::string path);
|
||
|
void clearConsole();
|
||
|
bool isArchive(const char * path);
|
||
|
void downloadArchive(std::string url, archiveType type);
|
||
|
void extractArchive(archiveType type);
|
||
|
void progressTest(std::string url, archiveType type);
|
||
|
std::string formatListItemTitle(const std::string str, size_t maxScore = 140);
|
||
|
std::string formatApplicationId(u64 ApplicationId);
|
||
|
std::set<std::string> readLineByLine(const char * path);
|
||
|
std::vector<std::string> fetchPayloads();
|
||
|
void shut_down(bool reboot = false);
|