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
1.2 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 2001
  5. //
  6. // File: CompName.h
  7. //
  8. // Contents: Definitions for the computer name management code.
  9. //
  10. // History: 20-April-2001 EricB Created
  11. //
  12. //-----------------------------------------------------------------------------
  13. #ifndef _COMPNAME_H_
  14. #define _COMPNAME_H_
  15. //+----------------------------------------------------------------------------
  16. //
  17. // Function: NetDomComputerNames
  18. //
  19. // Synopsis: Entry point for the computer name command.
  20. //
  21. // Arguments: [rgNetDomArgs] - The command line argument array.
  22. //
  23. //-----------------------------------------------------------------------------
  24. DWORD
  25. NetDomComputerNames(ARG_RECORD * rgNetDomArgs);
  26. //+----------------------------------------------------------------------------
  27. //
  28. // Function: VerifyComputerNameRegistrations
  29. //
  30. // Synopsis: Check that each computer name has a DNS a record and an SPN.
  31. //
  32. //-----------------------------------------------------------------------------
  33. DWORD
  34. VerifyComputerNameRegistrations(PCWSTR pwzMachine, ND5_AUTH_INFO * pDomainUser);
  35. #endif // _COMPNAME_H_