文件名称:在evc中读写ini文件
文件大小:46KB
文件格式:HTM
更新时间:2012-03-31 08:27:19
werty
写的一个在EVC下读取INI文件的函数 DWORD GetPrivateProfileString( LPCTSTR lpAppName, LPCTSTR lpKeyName, LPCTSTR lpDefault, LPTSTR lpReturnedString, DWORD nSize, LPCTSTR lpFileName ) { CFile iniFile; PBYTE pFileBuf; CString szBuf; DWORD dwLength; if (lpFileName == NULL || lpReturnedString == NULL) return 0;