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
345 B

  1. #ifndef __MRU_H
  2. #define __MRU_H
  3. class PpMRU
  4. {
  5. public:
  6. PpMRU(int nSize);
  7. ~PpMRU();
  8. LPCTSTR operator [] (int nIndex);
  9. BOOL insert(LPCTSTR sz);
  10. BOOL save(LPCTSTR szSection, LPCTSTR szFilename);
  11. BOOL load(LPCTSTR szSection, LPCTSTR szFilename);
  12. private:
  13. int m_nSize;
  14. LPTSTR* m_ppszList;
  15. };
  16. #endif // __MRU_H