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.

65 lines
1001 B

  1. /*++
  2. Copyright (c) 1998, Microsoft Corporation
  3. Module Name:
  4. dhcpio.h
  5. Abstract:
  6. This module contains declarations for the DHCP allocator's network I/O
  7. completion routines.
  8. Author:
  9. Abolade Gbadegesin (aboladeg) 5-Mar-1998
  10. Revision History:
  11. --*/
  12. #ifndef _NATHLP_DHCPIO_H_
  13. #define _NATHLP_DHCPIO_H_
  14. //
  15. // CONSTANT DECLARATIONS
  16. //
  17. #define DHCP_ADDRESS_BROADCAST 0xffffffff
  18. //
  19. // FUNCTION DECLARATIONS
  20. //
  21. VOID
  22. DhcpReadCompletionRoutine(
  23. ULONG ErrorCode,
  24. ULONG BytesTransferred,
  25. PNH_BUFFER Bufferp
  26. );
  27. VOID
  28. DhcpReadServerReplyCompletionRoutine(
  29. ULONG ErrorCode,
  30. ULONG BytesTransferred,
  31. PNH_BUFFER Bufferp
  32. );
  33. VOID
  34. DhcpWriteClientRequestCompletionRoutine(
  35. ULONG ErrorCode,
  36. ULONG BytesTransferred,
  37. PNH_BUFFER Bufferp
  38. );
  39. VOID
  40. DhcpWriteCompletionRoutine(
  41. ULONG ErrorCode,
  42. ULONG BytesTransferred,
  43. PNH_BUFFER Bufferp
  44. );
  45. #endif // _NATHLP_DHCPIO_H_