| 10 | } |
| 11 | |
| 12 | CString IniFile::ReadString(PCWSTR section, PCWSTR name, PCWSTR defaultValue) { |
| 13 | CString result; |
| 14 | auto count = ::GetPrivateProfileString(section, name, defaultValue, result.GetBufferSetLength(128), 128, _path); |
| 15 | return result; |
| 16 | } |
| 17 | |
| 18 | bool IniFile::ReadBool(PCWSTR section, PCWSTR name, bool defaultValue) { |
| 19 | auto value = ReadInt(section, name, -1); |
no outgoing calls
no test coverage detected