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.

20 lines
500 B

  1. /*************************************************
  2. * mybar.h *
  3. * *
  4. * Copyright (C) 1995-1999 Microsoft Inc. *
  5. * *
  6. *************************************************/
  7. #ifndef _MYBAR_H_
  8. #define _MYBAR_H_
  9. class CMyToolBar : public CToolBar
  10. {
  11. public:
  12. CMyToolBar(){};
  13. virtual void DestroyToolTip(BOOL bIdleStatus,BOOL bResetTimer);
  14. protected:
  15. };
  16. #endif