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.

26 lines
564 B

  1. /*************************************************
  2. * tip.cpp *
  3. * *
  4. * Copyright (C) 1995-1999 Microsoft Inc. *
  5. * *
  6. *************************************************/
  7. #include "stdafx.h"
  8. #include "tip.h"
  9. CTip::CTip()
  10. {
  11. }
  12. void CTip::SetString(const char * szStr)
  13. {
  14. }
  15. BOOL CTip::Create(CWnd* pWnd)
  16. {
  17. ASSERT(pWnd);
  18. CRect rc(0,0,40,20);
  19. return CStatic::Create("111",SS_GRAYRECT | SS_CENTER | SS_BLACKFRAME,rc,pWnd);
  20. }