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.

26 lines
662 B

  1. #ifndef __DDFLDBAR_H__
  2. #define __DDFLDBAR_H__
  3. /*
  4. This file defines the interface for communication between InfoColumn and its bands when the InfoColumn is
  5. shown as a drop down window from the Folder Bar. Add any functions that the InfoColumn needs to call when its in
  6. the drop down mode, here.
  7. */
  8. /*
  9. interface IDropDownFldrBar
  10. {
  11. STDMETHOD(RegisterFlyOut) (THIS_ CFolderBar *pFolderBar) PURE;
  12. STDMETHOD(RevokeFlyOut) (THIS) PURE;
  13. };
  14. */
  15. class IDropDownFldrBar : public IUnknown
  16. {
  17. public:
  18. virtual HRESULT RegisterFlyOut(CFolderBar *pFolderBar) = 0;
  19. virtual HRESULT RevokeFlyOut() = 0;
  20. };
  21. #endif //__DDFLDBAR_H__