| 62 | #if defined(_WIN32) || defined(__CYGWIN__) |
| 63 | |
| 64 | int EventCreate (SWelsDecEvent* e, int manualReset, int initialState) { |
| 65 | e->h = CreateEvent (NULL, manualReset, initialState, NULL); |
| 66 | e->isSignaled = initialState; |
| 67 | return (e->h != NULL) ? 0 : 1; |
| 68 | } |
| 69 | |
| 70 | void EventReset (SWelsDecEvent* e) { |
| 71 | ResetEvent (e->h); |
nothing calls this directly
no outgoing calls
no test coverage detected