| 118 | } |
| 119 | |
| 120 | void EnterCritical(const char* pszName, const char* pszFile, int nLine, void* cs, bool fTry) |
| 121 | { |
| 122 | push_lock(cs, CLockLocation(pszName, pszFile, nLine), fTry); |
| 123 | } |
| 124 | |
| 125 | void LeaveCritical() |
| 126 | { |
nothing calls this directly
no test coverage detected