mirror of
https://github.com/Team-Resurgent/PrometheOS-Launcher.git
synced 2026-08-15 11:18:38 -07:00
19 lines
335 B
C++
19 lines
335 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();
|
|
private:
|
|
static void configure();
|
|
};
|