| 285 | bool m_Error; |
| 286 | HashState64 m_HashState; |
| 287 | WriteEntryContext(FILE* f) |
| 288 | { |
| 289 | m_File = f; |
| 290 | m_Error = false; |
| 291 | dmHashInit64(&m_HashState, false); |
| 292 | } |
| 293 | }; |
| 294 | |
| 295 | static void WriteEntry(WriteEntryContext* context, const uint64_t* key, Entry* entry) |
nothing calls this directly
no test coverage detected