[svn] / trunk / dshow / src / CAbout.cpp Repository:
ViewVC logotype

View of /trunk/dshow/src/CAbout.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6 - (download) (annotate)
Fri Mar 8 19:54:05 2002 UTC (22 years ago) by Isibaar
Original Path: branches/dshow/dshow/src/CAbout.cpp
File size: 576 byte(s)
initial import
#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