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.
|
|
// WizSheet.cpp : implementation file
//
#include "stdafx.h"
#include "keyring.h"
#include "WizSheet.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__; #endif
/////////////////////////////////////////////////////////////////////////////
// CWizardSheet
IMPLEMENT_DYNAMIC(CWizardSheet, CPropertySheet)
//---------------------------------------------------------------------------
CWizardSheet::CWizardSheet() :CPropertySheet() { short booger; booger = 1; booger += 2; // That makes three boogers.
}
//---------------------------------------------------------------------------
CWizardSheet::CWizardSheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage) :CPropertySheet(nIDCaption, pParentWnd, iSelectPage) { }
//---------------------------------------------------------------------------
CWizardSheet::CWizardSheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage) :CPropertySheet(pszCaption, pParentWnd, iSelectPage) { }
//---------------------------------------------------------------------------
CWizardSheet::~CWizardSheet() { }
BEGIN_MESSAGE_MAP(CWizardSheet, CPropertySheet) //{{AFX_MSG_MAP(CWizardSheet)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CWizardSheet message handlers
|