taitools/platform/dns.h

19 lines
322 B
C
Raw Normal View History

2024-02-06 08:24:58 +00:00
#pragma once
#include <windows.h>
#include <stdbool.h>
#include <stddef.h>
struct dns_config {
bool enable;
wchar_t router[128];
wchar_t cert[128];
wchar_t data[128];
wchar_t proxy[128];
wchar_t nesys[128];
wchar_t fjm[128];
};
HRESULT dns_platform_hook_init(const struct dns_config *cfg);