| 799 | } |
| 800 | |
| 801 | void Xbox360Peripheral::SerialReadCompleteInternal(void *target, void *parameter, IOReturn status, UInt32 bufferSizeRemaining) |
| 802 | { |
| 803 | if (target != NULL) |
| 804 | ((Xbox360Peripheral*)target)->SerialReadComplete(parameter, status, bufferSizeRemaining); |
| 805 | } |
| 806 | |
| 807 | // This forwards a completed write notification to a member function |
| 808 | void Xbox360Peripheral::WriteCompleteInternal(void *target,void *parameter,IOReturn status,UInt32 bufferSizeRemaining) |
nothing calls this directly
no test coverage detected