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.

123 lines
2.9 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1996-1998 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // ARCreated.h
  7. //
  8. // Abstract:
  9. // Definition of the CWizPageARCreated class.
  10. //
  11. // Implementation File:
  12. // ARCreated.cpp
  13. //
  14. // Author:
  15. // David Potter (davidp) December 10, 1997
  16. //
  17. // Revision History:
  18. //
  19. // Notes:
  20. //
  21. /////////////////////////////////////////////////////////////////////////////
  22. #ifndef __ARCREATED_H_
  23. #define __ARCREATED_H_
  24. /////////////////////////////////////////////////////////////////////////////
  25. // Forward Class Declarations
  26. /////////////////////////////////////////////////////////////////////////////
  27. class CWizPageARCreated;
  28. /////////////////////////////////////////////////////////////////////////////
  29. // External Class Declarations
  30. /////////////////////////////////////////////////////////////////////////////
  31. /////////////////////////////////////////////////////////////////////////////
  32. // Include Files
  33. /////////////////////////////////////////////////////////////////////////////
  34. #ifndef __RESOURCE_H_
  35. #include "resource.h"
  36. #define __RESOURCE_H_
  37. #endif
  38. #ifndef __CLUSAPPWIZPAGE_H_
  39. #include "ClusAppWizPage.h" // for CClusterAppStaticWizardPage
  40. #endif
  41. #ifndef __HELPDATA_H_
  42. #include "HelpData.h" // for control id to help context id mapping array
  43. #endif
  44. /////////////////////////////////////////////////////////////////////////////
  45. // Type Definitions
  46. /////////////////////////////////////////////////////////////////////////////
  47. /////////////////////////////////////////////////////////////////////////////
  48. // class CWizPageARCreated
  49. /////////////////////////////////////////////////////////////////////////////
  50. class CWizPageARCreated : public CClusterAppStaticWizardPage< CWizPageARCreated >
  51. {
  52. typedef CClusterAppStaticWizardPage< CWizPageARCreated > baseClass;
  53. public:
  54. //
  55. // Construction
  56. //
  57. // Standard constructor
  58. CWizPageARCreated( void )
  59. {
  60. } //*** CWizPageARCreated()
  61. WIZARDPAGE_HEADERTITLEID( IDS_HDR_TITLE_ARCD )
  62. WIZARDPAGE_HEADERSUBTITLEID( IDS_HDR_SUBTITLE_ARCD )
  63. enum { IDD = IDD_APP_RESOURCE_CREATED };
  64. public:
  65. //
  66. // CWizardPageWindow public methods.
  67. //
  68. public:
  69. //
  70. // CBasePage public methods.
  71. //
  72. public:
  73. //
  74. // Message map.
  75. //
  76. // BEGIN_MSG_MAP( CWizPageARCreated )
  77. // CHAIN_MSG_MAP( baseClass )
  78. // END_MSG_MAP()
  79. DECLARE_CTRL_NAME_MAP()
  80. //
  81. // Message handler functions.
  82. //
  83. // Implementation
  84. protected:
  85. public:
  86. // Return the help ID map
  87. static const DWORD * PidHelpMap( void ) { return g_aHelpIDs_IDD_APP_RESOURCE_CREATED; }
  88. }; //*** class CWizPageARCreated
  89. /////////////////////////////////////////////////////////////////////////////
  90. // Control name map
  91. BEGIN_CTRL_NAME_MAP( CWizPageARCreated )
  92. DEFINE_CTRL_NAME_MAP_ENTRY( IDC_WIZARD_PAGE_DESCRIPTION )
  93. END_CTRL_NAME_MAP()
  94. /////////////////////////////////////////////////////////////////////////////
  95. #endif // __ARCREATED_H_