windows-nt/Source/XPSP1/NT/ds/security/passport/pmconfig/mru.h

22 lines
345 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#ifndef __MRU_H
#define __MRU_H
class PpMRU
{
public:
PpMRU(int nSize);
~PpMRU();
LPCTSTR operator [] (int nIndex);
BOOL insert(LPCTSTR sz);
BOOL save(LPCTSTR szSection, LPCTSTR szFilename);
BOOL load(LPCTSTR szSection, LPCTSTR szFilename);
private:
int m_nSize;
LPTSTR* m_ppszList;
};
#endif // __MRU_H