mirror of
https://github.com/joel16/NX-Shell.git
synced 2024-11-23 03:39:49 +00:00
11 lines
235 B
C++
11 lines
235 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace Net {
|
|
bool GetNetworkStatus(void);
|
|
bool GetAvailableUpdate(const std::string &tag);
|
|
std::string GetLatestReleaseJSON(void);
|
|
void GetLatestReleaseNRO(const std::string &tag);
|
|
}
|