| 39 | } |
| 40 | |
| 41 | void WINAPI acquire_binsem_using_event( SRWLOCK* h_ ) |
| 42 | { |
| 43 | srwl_or_handle* shptr = (srwl_or_handle*) h_; |
| 44 | WaitForSingleObjectEx( shptr->h, INFINITE, FALSE ); |
| 45 | } |
| 46 | |
| 47 | void WINAPI release_binsem_using_event( SRWLOCK* h_ ) |
| 48 | { |
nothing calls this directly
no outgoing calls
no test coverage detected