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.

94 lines
2.2 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1996 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // BasePPag.cpp
  7. //
  8. // Abstract:
  9. // Implementation of the CBasePropertyPage class.
  10. //
  11. // Author:
  12. // David Potter (davidp) August 31, 1996
  13. //
  14. // Revision History:
  15. //
  16. // Notes:
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. #include "stdafx.h"
  20. #include "BasePPag.h"
  21. #include "ClusItem.h"
  22. #include "resource.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CBasePropertyPage property page
  30. /////////////////////////////////////////////////////////////////////////////
  31. IMPLEMENT_DYNCREATE(CBasePropertyPage, CBasePage)
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CBasePropertyPage Message Map
  34. BEGIN_MESSAGE_MAP(CBasePropertyPage, CBasePage)
  35. //{{AFX_MSG_MAP(CBasePropertyPage)
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. //++
  40. //
  41. // CBasePropertyPage::CBasePropertyPage
  42. //
  43. // Routine Description:
  44. // Default constructor.
  45. //
  46. // Arguments:
  47. // None.
  48. //
  49. // Return Value:
  50. // None.
  51. //
  52. //--
  53. /////////////////////////////////////////////////////////////////////////////
  54. CBasePropertyPage::CBasePropertyPage(void)
  55. {
  56. } //*** CBasePropertyPage::CBasePropertyPage()
  57. /////////////////////////////////////////////////////////////////////////////
  58. //++
  59. //
  60. // CBasePropertyPage::CBasePropertyPage
  61. //
  62. // Routine Description:
  63. // Constructor.
  64. //
  65. // Arguments:
  66. // idd [IN] Dialog template resource ID.
  67. // pdwHelpMap [IN] Control to help ID map.
  68. // nIDCaption [IN] Caption string resource ID.
  69. //
  70. // Return Value:
  71. // None.
  72. //
  73. //--
  74. /////////////////////////////////////////////////////////////////////////////
  75. CBasePropertyPage::CBasePropertyPage(
  76. IN UINT idd,
  77. IN const DWORD * pdwHelpMap,
  78. IN UINT nIDCaption
  79. )
  80. : CBasePage(idd, pdwHelpMap, nIDCaption)
  81. {
  82. //{{AFX_DATA_INIT(CBasePage)
  83. //}}AFX_DATA_INIT
  84. } //*** CBasePropertyPage::CBasePropertyPage(UINT, UINT)