| 39 | } |
| 40 | |
| 41 | void SettingsLoadWrapper::Entry(const char* section, const char* var, int& value, const int defvalue /*= 0*/) |
| 42 | { |
| 43 | value = m_si.GetIntValue(section, var, defvalue); |
| 44 | } |
| 45 | |
| 46 | void SettingsLoadWrapper::Entry(const char* section, const char* var, uint& value, const uint defvalue /*= 0*/) |
| 47 | { |
no test coverage detected