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.

21 lines
474 B

  1. /*************************************************
  2. * tip.h *
  3. * *
  4. * Copyright (C) 1995-1999 Microsoft Inc. *
  5. * *
  6. *************************************************/
  7. #ifndef _TIP_H_
  8. #define _TIP_H_
  9. class CTip : public CStatic
  10. {
  11. public:
  12. CTip();
  13. void SetString(const char * szStr);
  14. BOOL Create(CWnd* pWnd);
  15. protected:
  16. };
  17. #endif