Handle a completed asynchronous write
| 887 | |
| 888 | // Handle a completed asynchronous write |
| 889 | void Xbox360Peripheral::WriteComplete(void *parameter,IOReturn status,UInt32 bufferSizeRemaining) |
| 890 | { |
| 891 | IOMemoryDescriptor *memory=(IOMemoryDescriptor*)parameter; |
| 892 | if(status!=kIOReturnSuccess) { |
| 893 | IOLog("write - Error writing: 0x%.8x\n",status); |
| 894 | } |
| 895 | memory->release(); |
| 896 | } |
| 897 | |
| 898 | |
| 899 | void Xbox360Peripheral::MakeSettingsChanges() |
no outgoing calls
no test coverage detected