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.

70 lines
1.9 KiB

  1. // MsiePpg.cpp : Implementation of the CMsiePropPage property page class.
  2. #include "stdafx.h"
  3. #include "Msie.h"
  4. #include "MsiePpg.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. IMPLEMENT_DYNCREATE(CMsiePropPage, COlePropertyPage)
  11. /////////////////////////////////////////////////////////////////////////////
  12. // Message map
  13. BEGIN_MESSAGE_MAP(CMsiePropPage, COlePropertyPage)
  14. //{{AFX_MSG_MAP(CMsiePropPage)
  15. //}}AFX_MSG_MAP
  16. END_MESSAGE_MAP()
  17. /////////////////////////////////////////////////////////////////////////////
  18. // Initialize class factory and guid
  19. IMPLEMENT_OLECREATE_EX(CMsiePropPage, "MSIE.MsiePropPage.1",
  20. 0x25959bf0, 0xe700, 0x11d2, 0xa7, 0xaf, 0, 0xc0, 0x4f, 0x80, 0x62, 0)
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CMsiePropPage::CMsiePropPageFactory::UpdateRegistry -
  23. // Adds or removes system registry entries for CMsiePropPage
  24. BOOL CMsiePropPage::CMsiePropPageFactory::UpdateRegistry(BOOL bRegister)
  25. {
  26. if (bRegister)
  27. return AfxOleRegisterPropertyPageClass(AfxGetInstanceHandle(),
  28. m_clsid, IDS_MSIE_PPG, afxRegApartmentThreading);
  29. else
  30. return AfxOleUnregisterClass(m_clsid, NULL);
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CMsiePropPage::CMsiePropPage - Constructor
  34. CMsiePropPage::CMsiePropPage() :
  35. COlePropertyPage(IDD, IDS_MSIE_PPG_CAPTION)
  36. {
  37. //{{AFX_DATA_INIT(CMsiePropPage)
  38. //}}AFX_DATA_INIT
  39. }
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CMsiePropPage::DoDataExchange - Moves data between page and properties
  42. void CMsiePropPage::DoDataExchange(CDataExchange* pDX)
  43. {
  44. //{{AFX_DATA_MAP(CMsiePropPage)
  45. //}}AFX_DATA_MAP
  46. DDP_PostProcessing(pDX);
  47. }
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CMsiePropPage message handlers