Finish the link
| 41 | |
| 42 | // Finish the link |
| 43 | void Device_Finalise(DeviceLink *link) |
| 44 | { |
| 45 | (*link->interface)->close(link->interface); |
| 46 | (*link->interface)->Release(link->interface); |
| 47 | link->interface = NULL; |
| 48 | } |
| 49 | |
| 50 | // Send a report via the link |
| 51 | bool Device_Send(DeviceLink *link,void *data,int length) |
no test coverage detected