Windows: Mount Point and Symlink Overlay Icons
[openafs.git] / src / WINNT / client_exp / PropBase.cpp
1 #include "stdafx.h"
2 #include "PropBase.h"
3
4 PropertyPage::PropertyPage(const CStringArray& newFilenames)
5 {
6     filenames.Copy(newFilenames);
7 }
8
9 PropertyPage::~PropertyPage(void)
10 {
11 }
12
13 void PropertyPage::SetHwnd(HWND newHwnd)
14 {
15     m_hwnd = newHwnd;
16 }
17
18 BOOL PropertyPage::PropPageProc( HWND hwnd, UINT uMessage, WPARAM wParam, LPARAM lParam )
19 {
20     return FALSE;
21 }