2019-09-04 17:43:15 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
2019-11-06 00:31:11 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
2019-09-04 17:43:15 +00:00
|
|
|
|
2019-11-06 00:31:11 +00:00
|
|
|
struct dns_config {
|
|
|
|
bool enable;
|
|
|
|
wchar_t router[128];
|
|
|
|
wchar_t startup[128];
|
|
|
|
wchar_t billing[128];
|
|
|
|
wchar_t aimedb[128];
|
|
|
|
};
|
2019-09-04 17:43:15 +00:00
|
|
|
|
2019-11-06 00:31:11 +00:00
|
|
|
HRESULT dns_platform_hook_init(const struct dns_config *cfg);
|