===========================================================================
| 35 | namespace _ini { |
| 36 | //=========================================================================== |
| 37 | BOOL RegLoadString(LPCTSTR section, LPCTSTR key, BOOL /*peruser*/, LPTSTR buffer, uint32_t chars) |
| 38 | { |
| 39 | uint32_t n = GetPrivateProfileString(section, key, NULL, buffer, chars, g_sConfigFile.c_str()); |
| 40 | return n > 0; |
| 41 | } |
| 42 | |
| 43 | //=========================================================================== |
| 44 | void RegSaveString(LPCTSTR section, LPCTSTR key, BOOL /*peruser*/, const std::string& buffer) |
no outgoing calls
no test coverage detected