This forwards a completed write notification to a member function
| 806 | |
| 807 | // This forwards a completed write notification to a member function |
| 808 | void Xbox360Peripheral::WriteCompleteInternal(void *target,void *parameter,IOReturn status,UInt32 bufferSizeRemaining) |
| 809 | { |
| 810 | if(target!=NULL) |
| 811 | ((Xbox360Peripheral*)target)->WriteComplete(parameter,status,bufferSizeRemaining); |
| 812 | } |
| 813 | |
| 814 | // This handles a completed asynchronous read |
| 815 | void Xbox360Peripheral::ReadComplete(void *parameter,IOReturn status,UInt32 bufferSizeRemaining) |
nothing calls this directly
no test coverage detected