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.

42 lines
1019 B

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright(C) 1999-2000 Microsoft Corporation all rights reserved.
  4. //
  5. // Module: migrateregistry.h
  6. //
  7. // Project: Windows 2000 IAS
  8. //
  9. // Description: Implementation of CMigrateRegistry
  10. // Used only by the NT4 migration code
  11. //
  12. // Author: tperraut
  13. //
  14. // Revision 02/25/2000 created
  15. //
  16. /////////////////////////////////////////////////////////////////////////////
  17. #ifndef _MIGRATEREGISTRY_H_E9ADA837_270D_48ae_82C9_CA0EC3C1B6E1
  18. #define _MIGRATEREGISTRY_H_E9ADA837_270D_48ae_82C9_CA0EC3C1B6E1
  19. #if _MSC_VER > 1000
  20. #pragma once
  21. #endif // _MSC_VER > 1000
  22. #include "nocopy.h"
  23. class CMigrateRegistry: private NonCopyable
  24. {
  25. public:
  26. explicit CMigrateRegistry(CUtils& pUtils)
  27. : m_pUtils(pUtils)
  28. {
  29. }
  30. void MigrateProviders();
  31. private:
  32. LONG DeleteAuthSrvService();
  33. CUtils& m_pUtils;
  34. };
  35. #endif // _MIGRATEREGISTRY_H_E9ADA837_270D_48ae_82C9_CA0EC3C1B6E1_