1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2024-09-24 03:08:20 +02:00
segatools-dniel97/platform/dns.h

18 lines
307 B
C
Raw Permalink Normal View History

2019-09-04 19:43:15 +02:00
#pragma once
#include <windows.h>
2019-11-06 01:31:11 +01:00
#include <stdbool.h>
#include <stddef.h>
2019-09-04 19:43:15 +02:00
2019-11-06 01:31:11 +01:00
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];
2019-11-06 01:31:11 +01:00
};
2019-09-04 19:43:15 +02:00
2019-11-06 01:31:11 +01:00
HRESULT dns_platform_hook_init(const struct dns_config *cfg);