This forwards a completed read notification to a member function
| 793 | |
| 794 | // This forwards a completed read notification to a member function |
| 795 | void Xbox360Peripheral::ReadCompleteInternal(void *target,void *parameter,IOReturn status,UInt32 bufferSizeRemaining) |
| 796 | { |
| 797 | if(target!=NULL) |
| 798 | ((Xbox360Peripheral*)target)->ReadComplete(parameter,status,bufferSizeRemaining); |
| 799 | } |
| 800 | |
| 801 | void Xbox360Peripheral::SerialReadCompleteInternal(void *target, void *parameter, IOReturn status, UInt32 bufferSizeRemaining) |
| 802 | { |
nothing calls this directly
no test coverage detected