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
502 B

  1. /*
  2. Copyright (c) 1998, Microsoft Corporation, all rights reserved
  3. Description:
  4. History:
  5. */
  6. #ifndef _RASDHCP_H_
  7. #define _RASDHCP_H_
  8. #include "rasiphlp.h"
  9. DWORD
  10. RasDhcpInitialize(
  11. VOID
  12. );
  13. VOID
  14. RasDhcpUninitialize(
  15. VOID
  16. );
  17. DWORD
  18. RasDhcpAcquireAddress(
  19. IN HPORT hPort,
  20. OUT IPADDR* pnboIpAddr,
  21. OUT IPADDR* pnboIpMask,
  22. OUT BOOL* pfEasyNet
  23. );
  24. VOID
  25. RasDhcpReleaseAddress(
  26. IN IPADDR nboIpAddr
  27. );
  28. #endif // #ifndef _RASDHCP_H_