| 170 | |
| 171 | |
| 172 | void CIniFileLoad::LoadDataInt(CString strSection,CString strKey,int &nValue) |
| 173 | { |
| 174 | CString strValue=_T(""); |
| 175 | LoadString(strSection,strKey,strValue); |
| 176 | |
| 177 | if(strValue.IsEmpty()) |
| 178 | { |
| 179 | nValue=-1; |
| 180 | } |
| 181 | else |
| 182 | { |
| 183 | nValue=_ttoi(strValue); |
| 184 | } |
| 185 | |
| 186 | } |
| 187 | |
| 188 | void CIniFileLoad::LoadDataDouble(CString strSection,CString strKey,double &fValue) |
| 189 | { |