| 62 | } |
| 63 | |
| 64 | void CIniFileLoad::LoadString(CString strSection,CString strKey,CString &strValue) |
| 65 | { |
| 66 | DWORD dwSize = 1000; |
| 67 | GetPrivateProfileString(strSection,strKey,_T(""), |
| 68 | strValue.GetBuffer(dwSize),dwSize,m_strSettingPath); |
| 69 | strValue.ReleaseBuffer(); |
| 70 | } |
| 71 | |
| 72 | |
| 73 | void CIniFileLoad::SetString(CString strSection,CString strKey,CString strValue) |
no test coverage detected