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.h < prev    next >
C/C++ Source or Header  |  1998-04-02  |  589b  |  24 lines

  1. // MRUStrings.h: interface for the CMRUStrings class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4.  
  5. #if !defined(AFX_MRUSTRINGS_H__BF23C403_9135_11D1_8302_00A0C91BC942__INCLUDED_)
  6. #define AFX_MRUSTRINGS_H__BF23C403_9135_11D1_8302_00A0C91BC942__INCLUDED_
  7.  
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11.  
  12. class CMRUStrings  
  13. {
  14. public:
  15.     BOOL Create(CRegKey& key);
  16.     CMRUStrings();
  17.     virtual ~CMRUStrings();
  18.  
  19. protected:
  20.     int m_cElementsMax;
  21. };
  22.  
  23. #endif // !defined(AFX_MRUSTRINGS_H__BF23C403_9135_11D1_8302_00A0C91BC942__INCLUDED_)
  24.