| 58 | |
| 59 | |
| 60 | LongFilenameCache::LongFilenameCache() |
| 61 | { |
| 62 | |
| 63 | m_lookups = 0; |
| 64 | m_hits = 0; |
| 65 | |
| 66 | m_map.reserve(LFN_CACHE_ENTRIES); |
| 67 | |
| 68 | InitializeCriticalSection(&m_crit); |
| 69 | } |
| 70 | |
| 71 | LongFilenameCache::~LongFilenameCache() |
| 72 | { |
nothing calls this directly
no outgoing calls
no test coverage detected