17 lines
245 B
C
17 lines
245 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "3ds/types.h"
|
|
|
|
struct settings {
|
|
char IPString[16];
|
|
int port;
|
|
};
|
|
|
|
extern struct settings settings;
|
|
extern struct settings defaultSettings;
|
|
|
|
extern Handle fileHandle;
|
|
|
|
bool readSettings(void);
|