home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / addins / wins / mytooltip.cpp < prev    next >
C/C++ Source or Header  |  1998-04-02  |  681b  |  34 lines

  1. // MyToolTip.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "resource.h"
  6. #include "MyToolTip.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CMyToolTip
  16.  
  17. CMyToolTip::CMyToolTip()
  18. {
  19. }
  20.  
  21. CMyToolTip::~CMyToolTip()
  22. {
  23. }
  24.  
  25.  
  26. BEGIN_MESSAGE_MAP(CMyToolTip, CToolTipCtrl)
  27.     //{{AFX_MSG_MAP(CMyToolTip)
  28.         // NOTE - the ClassWizard will add and remove mapping macros here.
  29.     //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CMyToolTip message handlers
  34.