windows-nt/Source/XPSP1/NT/ds/security/passport/pmconfig/mru.h
2020-09-26 16:20:57 +08:00

22 lines
345 B
C++

#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