Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
// PropSht.h: Definition of the CAddPropertySheet class
//
//////////////////////////////////////////////////////////////////////
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "resource.h" // main symbols
#include "ChainWiz.h"
/////////////////////////////////////////////////////////////////////////////
// CAddPropertySheet
class CAddPropertySheet : public IAddPropertySheet {
private: CChainWiz * m_pCW; ULONG m_refs;
public: CAddPropertySheet(CChainWiz * pCW) { m_pCW = pCW; m_refs = 0; }
// IAddPropertySheet
public: STDMETHOD (QueryInterface)( REFIID riid, void** ppvObject ); STDMETHOD_(ULONG, AddRef) ( ); STDMETHOD_(ULONG, Release)( ); STDMETHOD (AddPage) ( /*[in]*/ PROPSHEETPAGEW* psp );
};
|