Parent Directory
|
Revision Log
Revision 6 - (view) (download)
1 : | Isibaar | 6 | #include "CAbout.h" |
2 : | #include "resource.h" | ||
3 : | |||
4 : | CUnknown * WINAPI CAbout::CreateInstance(LPUNKNOWN punk, HRESULT *phr) | ||
5 : | { | ||
6 : | CAbout * pNewObject = new CAbout(punk, phr); | ||
7 : | if (pNewObject == NULL) | ||
8 : | { | ||
9 : | *phr = E_OUTOFMEMORY; | ||
10 : | } | ||
11 : | return pNewObject; | ||
12 : | } | ||
13 : | |||
14 : | |||
15 : | CAbout::CAbout(LPUNKNOWN pUnk, HRESULT * phr) : | ||
16 : | CBasePropertyPage(NAME("CAbout"), pUnk, IDD_ABOUT, IDS_ABOUT) | ||
17 : | { | ||
18 : | ASSERT(phr); | ||
19 : | } | ||
20 : | |||
21 : | |||
22 : | CAbout::~CAbout() | ||
23 : | { | ||
24 : | } | ||
25 : | |||
26 : | |||
27 : | BOOL CAbout::OnReceiveMessage(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) | ||
28 : | { | ||
29 : | return CBasePropertyPage::OnReceiveMessage(hwnd, uMsg, wParam, lParam); | ||
30 : | } |
No admin address has been configured | ViewVC Help |
Powered by ViewVC 1.0.4 |