| 98 | } |
| 99 | |
| 100 | bool IniFile::WriteColor(PCWSTR section, PCWSTR name, COLORREF color) { |
| 101 | CString text; |
| 102 | text.Format(L"%d,%d,%d", GetRValue(color), GetGValue(color), GetBValue(color)); |
| 103 | return WriteString(section, name, text); |
| 104 | } |
| 105 | |
| 106 | bool IniFile::WriteFont(PCWSTR section, PCWSTR name, const LOGFONT& font) { |
| 107 | return ::WritePrivateProfileStruct(section, name, (PVOID)&font, sizeof(font), _path); |