| 23 | } |
| 24 | |
| 25 | int IniFile::ReadInt(PCWSTR section, PCWSTR name, int defaultValue) { |
| 26 | return ::GetPrivateProfileInt(section, name, defaultValue, _path); |
| 27 | } |
| 28 | |
| 29 | COLORREF IniFile::ReadColor(PCWSTR section, PCWSTR name, COLORREF defaultValue) { |
| 30 | auto text = ReadString(section, name); |
no outgoing calls
no test coverage detected