Source code of Windows XP (NT5)
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.

40 lines
782 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1999
  6. //
  7. // File: domutil.h
  8. //
  9. //--------------------------------------------------------------------------
  10. #ifndef HEADER_DOMUTIL
  11. #define HEADER_DOMUTIL
  12. PTESTED_DOMAIN
  13. AddTestedDomain(
  14. IN NETDIAG_PARAMS *pParams,
  15. IN NETDIAG_RESULT *pResults,
  16. IN LPWSTR pswzNetbiosDomainName,
  17. IN LPWSTR pswzDnsDomainName,
  18. IN BOOL bPrimaryDomain
  19. );
  20. BOOL
  21. NetpIsDomainNameValid(
  22. IN LPWSTR DomainName
  23. );
  24. BOOL
  25. NetpDcValidDnsDomain(
  26. IN LPCWSTR DnsDomainName
  27. );
  28. BOOL
  29. NlEqualDnsName(
  30. IN LPCWSTR Name1,
  31. IN LPCWSTR Name2
  32. );
  33. #endif