[cvs] / xvidcore / dshow / src / CAbout.cpp Repository:
ViewVC logotype

Diff of /xvidcore/dshow/src/CAbout.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1, Sat Feb 22 08:22:03 2003 UTC revision 1.1.2.1, Sat Feb 22 08:22:03 2003 UTC
# Line 0  Line 1 
1    /**************************************************************************
2     *
3     *      XVID DIRECTSHOW FRONTEND -- about-box
4     *      Copyright (c) 2002 Peter Ross <pross@xvid.org>
5     *
6     *      This program is free software; you can redistribute it and/or modify
7     *      it under the terms of the GNU General Public License as published by
8     *      the Free Software Foundation; either version 2 of the License, or
9     *      (at your option) any later version.
10     *
11     *      This program is distributed in the hope that it will be useful,
12     *      but WITHOUT ANY WARRANTY; without even the implied warranty of
13     *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     *      GNU General Public License for more details.
15     *
16     *      You should have received a copy of the GNU General Public License
17     *      along with this program; if not, write to the Free Software
18     *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19     *
20     *************************************************************************/
21    
22    #include "CAbout.h"
23    #include "resource.h"
24    
25    CUnknown * WINAPI CAbout::CreateInstance(LPUNKNOWN punk, HRESULT *phr)
26    {
27        CAbout * pNewObject = new CAbout(punk, phr);
28        if (pNewObject == NULL)
29            {
30            *phr = E_OUTOFMEMORY;
31        }
32        return pNewObject;
33    }
34    
35    
36    CAbout::CAbout(LPUNKNOWN pUnk, HRESULT * phr) :
37            CBasePropertyPage(NAME("CAbout"), pUnk, IDD_ABOUT, IDS_ABOUT)
38    {
39        ASSERT(phr);
40    }
41    
42    
43    CAbout::~CAbout()
44    {
45    }
46    
47    
48    BOOL CAbout::OnReceiveMessage(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
49    {
50            return CBasePropertyPage::OnReceiveMessage(hwnd, uMsg, wParam, lParam);
51    }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.1.2.1

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