mirror of
https://github.com/netchx/netch.git
synced 2026-03-26 18:49:46 +08:00
14 lines
281 B
C
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
|