1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2025-02-15 10:12:32 +01:00
2024-12-12 02:28:02 +08:00

22 lines
424 B
C

#pragma once
#include <windows.h>
#include <stdbool.h>
#include <stddef.h>
struct dns_config {
bool enable;
wchar_t router[128];
wchar_t startup[128];
wchar_t billing[128];
wchar_t aimedb[128];
wchar_t title[128];
bool replaceHost;
unsigned short startupPort;
unsigned short billingPort;
unsigned short aimedbPort;
};
HRESULT dns_platform_hook_init(const struct dns_config *cfg);