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
2021-02-10 17:28:47 +01:00

20 lines
399 B
C++

#pragma once
#include <borealis.hpp>
#define AF_INET 2
class NetPage : public brls::AppletFrame
{
private:
brls::List* list;
brls::Label* label;
std::vector<brls::ListItem*> listItems;
brls::ListItem* cancel;
public:
NetPage();
std::string ipToString(unsigned char* ip);
int stringToIp(std::string ip, unsigned char* out);
};