#include "CAbout.h" #include "resource.h" CUnknown * WINAPI CAbout::CreateInstance(LPUNKNOWN punk, HRESULT *phr) { CAbout * pNewObject = new CAbout(punk, phr); if (pNewObject == NULL) { *phr = E_OUTOFMEMORY; } return pNewObject; } CAbout::CAbout(LPUNKNOWN pUnk, HRESULT * phr) : CBasePropertyPage(NAME("CAbout"), pUnk, IDD_ABOUT, IDS_ABOUT) { ASSERT(phr); } CAbout::~CAbout() { } BOOL CAbout::OnReceiveMessage(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { return CBasePropertyPage::OnReceiveMessage(hwnd, uMsg, wParam, lParam); }