1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-19 21:45:04 +01:00
AIO-switch-updater/include/net_page.hpp

20 lines
390 B
C++
Raw Normal View History

#pragma once
#include <borealis.hpp>
constexpr int AF_INET = 2;
class NetPage : public brls::AppletFrame
{
private:
brls::List* list;
brls::Label* label;
2021-03-15 23:37:38 +00:00
brls::ListItem* listItem;
brls::ListItem* cancel;
public:
NetPage();
2021-02-10 16:28:47 +00:00
std::string ipToString(unsigned char* ip);
int stringToIp(std::string ip, unsigned char* out);
};