windows-nt/Source/XPSP1/NT/net/rras/ip/nathlp/dns/dnsio.h
2020-09-26 16:20:57 +08:00

40 lines
570 B
C

/*++
Copyright (c) 1998, Microsoft Corporation
Module Name:
dnsio.h
Abstract:
This module contains declarations for the DNS allocator's network I/O
completion routines.
Author:
Abolade Gbadegesin (aboladeg) 9-Mar-1998
Revision History:
--*/
#ifndef _NATHLP_DNSIO_H_
#define _NATHLP_DNSIO_H_
VOID
DnsReadCompletionRoutine(
ULONG ErrorCode,
ULONG BytesTransferred,
PNH_BUFFER Bufferp
);
VOID
DnsWriteCompletionRoutine(
ULONG ErrorCode,
ULONG BytesTransferred,
PNH_BUFFER Bufferp
);
#endif // _NATHLP_DNSIO_H_