| 96 | } |
| 97 | |
| 98 | bool LongFilenameCache::check_node_clean(LongFilenameCacheNode *node, const wstring& path) |
| 99 | { |
| 100 | #ifndef LFN_CACHE_NOTTL |
| 101 | |
| 102 | if (GetTickCount64() - node->m_timestap < LFN_CACHE_TTL) |
| 103 | return true; |
| 104 | |
| 105 | return false; |
| 106 | #else |
| 107 | return true; |
| 108 | #endif |
| 109 | } |
| 110 | |
| 111 | |
| 112 |
nothing calls this directly
no outgoing calls
no test coverage detected