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.

41 lines
1.2 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1998.
  5. //
  6. // File: upgrades.h
  7. //
  8. // Contents: upgrades dialog (during deployment)
  9. //
  10. // Classes: CUpgrades
  11. //
  12. // History: 03-14-1998 stevebl Commented
  13. //
  14. //---------------------------------------------------------------------------
  15. #if !defined(AFX_UPGRADES_H__7D8EB947_9E76_11D1_9854_00C04FB9603F__INCLUDED_)
  16. #define AFX_UPGRADES_H__7D8EB947_9E76_11D1_9854_00C04FB9603F__INCLUDED_
  17. #if _MSC_VER >= 1000
  18. #pragma once
  19. #endif // _MSC_VER >= 1000
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CUpgrades dialog
  22. class CUpgrades
  23. {
  24. // Construction
  25. public:
  26. // m_UpgradeList: maps UpgradeIndex to UpgradeData
  27. map<CString, CUpgradeData> m_UpgradeList;
  28. // m_NameIndex: maps name to UpgradeIndex
  29. map<CString, CString> m_NameIndex;
  30. };
  31. //{{AFX_INSERT_LOCATION}}
  32. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  33. #endif // !defined(AFX_UPGRADES_H__7D8EB947_9E76_11D1_9854_00C04FB9603F__INCLUDED_)