| 84 | } |
| 85 | |
| 86 | bool IniFile::WriteString(PCWSTR section, PCWSTR name, PCWSTR value) { |
| 87 | return ::WritePrivateProfileString(section, name, value, _path); |
| 88 | } |
| 89 | |
| 90 | bool IniFile::WriteInt(PCWSTR section, PCWSTR name, int value, bool hex) { |
| 91 | CString text; |
no outgoing calls
no test coverage detected