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

  1. // MRUStrings.cpp: implementation of the CMRUStrings class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4.  
  5. #include "stdafx.h"
  6. #include "resource.h"
  7. #include "MRUStrings.h"
  8.  
  9. #ifdef _DEBUG
  10. #undef THIS_FILE
  11. static char THIS_FILE[]=__FILE__;
  12. #define new DEBUG_NEW
  13. #endif
  14.  
  15. //////////////////////////////////////////////////////////////////////
  16. // Construction/Destruction
  17. //////////////////////////////////////////////////////////////////////
  18.  
  19. CMRUStrings::CMRUStrings()
  20. {
  21.  
  22. }
  23.  
  24. CMRUStrings::~CMRUStrings()
  25. {
  26.  
  27. }
  28.  
  29. BOOL CMRUStrings::Create(CRegKey &key)
  30. {
  31.     BOOL fOK = TRUE;
  32.  
  33.     return(fOK);
  34. }
  35.