12345678910111213141516171819202122232425 |
- // FileIni.h: interface for the CFileIni class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_FILEINI_H__79DF950D_AE02_43D4_8E53_D40E00AF638B__INCLUDED_)
- #define AFX_FILEINI_H__79DF950D_AE02_43D4_8E53_D40E00AF638B__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- class CFileIni
- {
- public:
- BOOL fnWriteFile(CString csApp,CString csKey,CString csText);
- void fnSetFileName(CString csFileName);
- BOOL fnReadFile(CString csApp,CString csKey,CString &csText);
- CFileIni();
- virtual ~CFileIni();
- CString m_csFileName;
- };
- #endif // !defined(AFX_FILEINI_H__79DF950D_AE02_43D4_8E53_D40E00AF638B__INCLUDED_)
|