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.

54 lines
981 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. faxconbar.h
  5. Abstract:
  6. This header prototypes my implementation of IExtendControlbar for IComponentData.
  7. Environment:
  8. WIN32 User Mode
  9. Author:
  10. Darwin Ouyang (t-darouy) 30-Sept-1997
  11. --*/
  12. #ifndef __FAX_ICOMPONENTDATA_CONTROLBAR_H_
  13. #define __FAX_ICOMPONENTDATA_CONTROLBAR_H_
  14. #include "resource.h"
  15. class CFaxComponentData; // forward decl
  16. class CFaxExtendControlbar : public IExtendControlbar
  17. {
  18. public:
  19. // constructor
  20. CFaxExtendControlbar()
  21. {
  22. m_pFaxSnapin = NULL;
  23. }
  24. // IExtendControlbar
  25. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE SetControlbar(
  26. /* [in] */ LPCONTROLBAR pControlbar);
  27. virtual /* [helpstring] */ HRESULT STDMETHODCALLTYPE ControlbarNotify(
  28. /* [in] */ MMC_NOTIFY_TYPE event,
  29. /* [in] */ LONG_PTR arg,
  30. /* [in] */ LONG_PTR param);
  31. protected:
  32. CFaxSnapin * m_pFaxSnapin;
  33. };
  34. #endif