Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
609 B

  1. /*++
  2. Copyright (c) 1998, Microsoft Corporation
  3. Module Name:
  4. dnsio.h
  5. Abstract:
  6. This module contains declarations for the DNS allocator's network I/O
  7. completion routines.
  8. Author:
  9. Abolade Gbadegesin (aboladeg) 9-Mar-1998
  10. Revision History:
  11. --*/
  12. #ifndef _NATHLP_DNSIO_H_
  13. #define _NATHLP_DNSIO_H_
  14. VOID
  15. DnsReadCompletionRoutine(
  16. ULONG ErrorCode,
  17. ULONG BytesTransferred,
  18. PNH_BUFFER Bufferp
  19. );
  20. VOID
  21. DnsWriteCompletionRoutine(
  22. ULONG ErrorCode,
  23. ULONG BytesTransferred,
  24. PNH_BUFFER Bufferp
  25. );
  26. #endif // _NATHLP_DNSIO_H_