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.

55 lines
1.4 KiB

  1. // WizSheet.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "keyring.h"
  5. #include "WizSheet.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CWizardSheet
  13. IMPLEMENT_DYNAMIC(CWizardSheet, CPropertySheet)
  14. //---------------------------------------------------------------------------
  15. CWizardSheet::CWizardSheet()
  16. :CPropertySheet()
  17. {
  18. short booger;
  19. booger = 1;
  20. booger += 2;
  21. // That makes three boogers.
  22. }
  23. //---------------------------------------------------------------------------
  24. CWizardSheet::CWizardSheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
  25. :CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
  26. {
  27. }
  28. //---------------------------------------------------------------------------
  29. CWizardSheet::CWizardSheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
  30. :CPropertySheet(pszCaption, pParentWnd, iSelectPage)
  31. {
  32. }
  33. //---------------------------------------------------------------------------
  34. CWizardSheet::~CWizardSheet()
  35. {
  36. }
  37. BEGIN_MESSAGE_MAP(CWizardSheet, CPropertySheet)
  38. //{{AFX_MSG_MAP(CWizardSheet)
  39. // NOTE - the ClassWizard will add and remove mapping macros here.
  40. //}}AFX_MSG_MAP
  41. END_MESSAGE_MAP()
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CWizardSheet message handlers