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.

38 lines
840 B

  1. // PropSht.h: Definition of the CAddPropertySheet class
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. #include "resource.h" // main symbols
  8. #include "ChainWiz.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CAddPropertySheet
  11. class CAddPropertySheet :
  12. public IAddPropertySheet
  13. {
  14. private:
  15. CChainWiz * m_pCW;
  16. ULONG m_refs;
  17. public:
  18. CAddPropertySheet(CChainWiz * pCW)
  19. {
  20. m_pCW = pCW;
  21. m_refs = 0;
  22. }
  23. // IAddPropertySheet
  24. public:
  25. STDMETHOD (QueryInterface)( REFIID riid, void** ppvObject );
  26. STDMETHOD_(ULONG, AddRef) ( );
  27. STDMETHOD_(ULONG, Release)( );
  28. STDMETHOD (AddPage) ( /*[in]*/ PROPSHEETPAGEW* psp );
  29. };