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.2 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. faxproppg.h
  5. Abstract:
  6. This header prototypes my implementation of IExtendPropertySheet for the IComponent interface.
  7. Environment:
  8. WIN32 User Mode
  9. Author:
  10. Darwin Ouyang (t-darouy) 30-Sept-1997
  11. --*/
  12. #ifndef __FAX_ICOMPONENT_PROP_PAGE_H_
  13. #define __FAX_ICOMPONENT_PROP_PAGE_H_
  14. #include "resource.h"
  15. class CFaxComponent; // forward declared
  16. class CFaxComponentExtendPropertySheet : public IExtendPropertySheet {
  17. public:
  18. CFaxComponentExtendPropertySheet()
  19. {
  20. m_pFaxComponent = 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. CFaxComponent * m_pFaxComponent;
  30. };
  31. #endif