| 82 | } |
| 83 | |
| 84 | WELS_THREAD_ERROR_CODE WelsMutexLock (WELS_MUTEX* mutex) { |
| 85 | EnterCriticalSection (mutex); |
| 86 | |
| 87 | return WELS_THREAD_ERROR_OK; |
| 88 | } |
| 89 | |
| 90 | WELS_THREAD_ERROR_CODE WelsMutexUnlock (WELS_MUTEX* mutex) { |
| 91 | LeaveCriticalSection (mutex); |
no outgoing calls
no test coverage detected