You've already forked FileManager
mirror of
https://github.com/Team-Resurgent/FileManager.git
synced 2026-04-30 10:38:50 -07:00
21 lines
421 B
C++
21 lines
421 B
C++
#pragma once
|
|
|
|
#include "xboxInternals.h"
|
|
|
|
class network
|
|
{
|
|
public:
|
|
static void init();
|
|
static void restart();
|
|
static bool isReady();
|
|
static uint32_t getAddress();
|
|
static uint32_t getSubnet();
|
|
static uint32_t getGateway();
|
|
static uint32_t getPrimaryDns();
|
|
static uint32_t getSecondaryDns();
|
|
static bool getNetworkInitialized();
|
|
static void setNetworkInitialized(bool value);
|
|
private:
|
|
static void configure();
|
|
};
|