taitools/hooklib/dns.h

11 lines
229 B
C
Raw Normal View History

2024-02-06 08:24:58 +00:00
#pragma once
#include <windows.h>
#include <stddef.h>
// if to_src is NULL, all lookups for from_src will fail
HRESULT dns_hook_push(const wchar_t *from_src, const wchar_t *to_src);
2024-02-17 09:24:36 +00:00
void dns_hook_apply_hooks(HMODULE target);