Files
netch/Redirector/DNS.h
2021-07-20 06:51:54 +08:00

14 lines
281 B
C

#pragma once
#ifndef DNS_H
#define DNS_H
#include <Windows.h>
#include <nfapi.h>
void dns_init();
void dns_free();
void dnsCreate(ENDPOINT_ID id, PBYTE target, ULONG targetLength, PCHAR buffer, ULONG bufferLength, PNF_UDP_OPTIONS options);
void dnsDelete();
#endif