| 51 | } |
| 52 | |
| 53 | int ThreadCreate (SWelsDecThread* t, LPWELS_THREAD_ROUTINE tf, void* ta) { |
| 54 | WELS_THREAD_ATTR attr = 0; |
| 55 | return WelsThreadCreate (& (t->h), tf, ta, attr); |
| 56 | } |
| 57 | |
| 58 | int ThreadWait (SWelsDecThread* t) { |
| 59 | return WelsThreadJoin (t->h); |
nothing calls this directly
no test coverage detected