| 88 | } |
| 89 | |
| 90 | bool IniFile::WriteInt(PCWSTR section, PCWSTR name, int value, bool hex) { |
| 91 | CString text; |
| 92 | text.Format(hex ? L"0x%X" : L"%d", value); |
| 93 | return WriteString(section, name, text); |
| 94 | } |
| 95 | |
| 96 | bool IniFile::WriteBool(PCWSTR section, PCWSTR name, bool value) { |
| 97 | return WriteInt(section, name, value ? 1 : 0); |
no outgoing calls
no test coverage detected