Source code of Windows XP (NT5)
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.

48 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. faxproppg.h
  5. Abstract:
  6. This header prototypes my implementation of IExtendPropertySheet.
  7. Environment:
  8. WIN32 User Mode
  9. Author:
  10. Darwin Ouyang (t-darouy) 30-Sept-1997
  11. --*/
  12. #ifndef __FAX_PROP_PAGE_H_
  13. #define __FAX_PROP_PAGE_H_
  14. #include "resource.h"
  15. class CFaxSnapin; // forward declared
  16. class CFaxExtendPropertySheet : public IExtendPropertySheet {
  17. public:
  18. CFaxExtendPropertySheet()
  19. {
  20. m_pFaxSnapin = NULL;
  21. }
  22. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE CreatePropertyPages(
  23. /* [in] */ LPPROPERTYSHEETCALLBACK lpProvider,
  24. /* [in] */ LONG_PTR handle,
  25. /* [in] */ LPDATAOBJECT lpIDataObject);
  26. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE QueryPagesFor(
  27. /* [in] */ LPDATAOBJECT lpDataObject);
  28. protected:
  29. CFaxSnapin * m_pFaxSnapin;
  30. };
  31. #endif