| 1555 | |
| 1556 | bool Opened() { return (m_File != nullptr); }; |
| 1557 | void Close() |
| 1558 | { |
| 1559 | if (m_File != nullptr) |
| 1560 | { |
| 1561 | fs_close(m_File); |
| 1562 | m_File = nullptr; |
| 1563 | } |
| 1564 | } |
| 1565 | |
| 1566 | void WriteString(const astr_t &key, const astr_t &value) |
| 1567 | { |