| 97 | } |
| 98 | |
| 99 | void CheckNewVerison() |
| 100 | { |
| 101 | uint32_t newVerison = InterlockedCompareExchange(m_versionMem.get(), 0, 0); |
| 102 | if (newVerison != m_lastKnownVersion) |
| 103 | { |
| 104 | m_lastKnownVersion = newVerison; |
| 105 | m_cache.clear(); |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | bool IsQueryNeeded(const wchar_t* str) |
| 110 | { |
nothing calls this directly
no outgoing calls
no test coverage detected