platform: Shift config structs around

This commit is contained in:
Tau
2019-11-05 19:31:11 -05:00
parent a87b8f72fa
commit 8b8656c9d2
19 changed files with 114 additions and 85 deletions

View File

@ -2,7 +2,15 @@
#include <windows.h>
#include "platform/config.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];
};
HRESULT dns_platform_hook_init(const struct dns_config *cfg);