===========================================================================
| 42 | |
| 43 | //=========================================================================== |
| 44 | void RegSaveString(LPCTSTR section, LPCTSTR key, BOOL /*peruser*/, const std::string& buffer) |
| 45 | { |
| 46 | BOOL updated = WritePrivateProfileString(section, key, buffer.c_str(), g_sConfigFile.c_str()); |
| 47 | _ASSERT(updated || GetLastError() == 0); |
| 48 | } |
| 49 | |
| 50 | //=========================================================================== |
| 51 | void RegDeleteString(LPCTSTR section, BOOL /*peruser*/) |
no outgoing calls
no test coverage detected