----------------------------------------------------------------------------- Entry point of the thread for receiving data from the HID port -----------------------------------------------------------------------------
| 186 | // Entry point of the thread for receiving data from the HID port |
| 187 | //----------------------------------------------------------------------------- |
| 188 | void HidController::ThreadEntryPoint |
| 189 | ( |
| 190 | Event* _exitEvent, |
| 191 | void* _context |
| 192 | ) |
| 193 | { |
| 194 | HidController* hc = (HidController*)_context; |
| 195 | if( hc ) |
| 196 | { |
| 197 | hc->ThreadProc( _exitEvent ); |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | //----------------------------------------------------------------------------- |
| 202 | // <HidController::ThreadProc> |
nothing calls this directly
no test coverage detected