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.

55 lines
684 B

  1. /*++
  2. Copyright (c) 2001-2002 Microsoft Corporation
  3. Module Name:
  4. isatap.h
  5. Abstract:
  6. This module contains the ISATAP interface to the IPv6 Helper Service.
  7. Author:
  8. Mohit Talwar (mohitt) Tue May 07 16:34:44 2002
  9. Environment:
  10. User mode only.
  11. --*/
  12. #ifndef _ISATAP_
  13. #define _ISATAP_
  14. #pragma once
  15. DWORD
  16. IsatapInitialize(
  17. VOID
  18. );
  19. VOID
  20. IsatapUninitialize(
  21. VOID
  22. );
  23. VOID
  24. IsatapAddressChangeNotification(
  25. IN BOOL Delete,
  26. IN IN_ADDR Address
  27. );
  28. VOID
  29. IsatapRouteChangeNotification(
  30. VOID
  31. );
  32. VOID
  33. IsatapConfigurationChangeNotification(
  34. VOID
  35. );
  36. #endif // _ISATAP_