| 76 | #if defined(_WIN32) || defined(__CYGWIN__) |
| 77 | |
| 78 | WELS_THREAD_ERROR_CODE WelsMutexInit (WELS_MUTEX* mutex) { |
| 79 | InitializeCriticalSection (mutex); |
| 80 | |
| 81 | return WELS_THREAD_ERROR_OK; |
| 82 | } |
| 83 | |
| 84 | WELS_THREAD_ERROR_CODE WelsMutexLock (WELS_MUTEX* mutex) { |
| 85 | EnterCriticalSection (mutex); |
no outgoing calls
no test coverage detected