| 91 | } |
| 92 | |
| 93 | void EventDestroy (SWelsDecEvent* e) { |
| 94 | CloseHandle (e->h); |
| 95 | e->h = NULL; |
| 96 | } |
| 97 | |
| 98 | int SemCreate (SWelsDecSemphore* s, long value, long max) { |
| 99 | s->h = CreateSemaphore (NULL, value, max, NULL); |
nothing calls this directly
no outgoing calls
no test coverage detected