mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-08 11:31:43 +00:00
20 lines
No EOL
390 B
C++
20 lines
No EOL
390 B
C++
#pragma once
|
|
|
|
#include <borealis.hpp>
|
|
|
|
constexpr int AF_INET = 2;
|
|
|
|
class NetPage : public brls::AppletFrame
|
|
{
|
|
private:
|
|
brls::List* list;
|
|
brls::Label* label;
|
|
brls::ListItem* listItem;
|
|
brls::ListItem* cancel;
|
|
|
|
public:
|
|
NetPage();
|
|
std::string ipToString(unsigned char* ip);
|
|
int stringToIp(std::string ip, unsigned char* out);
|
|
|
|
}; |