[svn] / branches / dev-api-3 / dshow / src / CAbout.cpp Repository:
ViewVC logotype

View of /branches/dev-api-3/dshow/src/CAbout.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 392 - (download) (annotate)
Wed Sep 4 18:44:41 2002 UTC (21 years, 6 months ago)
File size: 576 byte(s)
This commit was manufactured by cvs2svn to create branch 'dev-api-3'.
#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);
}

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4