mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2025-02-14 17:52:58 +01:00
Co-authored-by: Sanheiii <35133371+Sanheiii@users.noreply.github.com> Reviewed-on: https://gitea.tendokyu.moe/Dniel97/segatools/pulls/34 Co-authored-by: Sanhei <sanhei@noreply.gitea.tendokyu.moe> Co-committed-by: Sanhei <sanhei@noreply.gitea.tendokyu.moe>
19 lines
329 B
C
19 lines
329 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;
|
|
};
|
|
|
|
HRESULT dns_platform_hook_init(const struct dns_config *cfg);
|