| 1564 | } |
| 1565 | |
| 1566 | void WriteString(const astr_t &key, const astr_t &value) |
| 1567 | { |
| 1568 | if (m_File != nullptr) |
| 1569 | { |
| 1570 | fputs(astr_t(key + "=" + value + "\n").c_str(), m_File); |
| 1571 | } |
| 1572 | } |
| 1573 | |
| 1574 | void WriteInt(const astr_t &key, int value) |
| 1575 | { |