| 62 | } |
| 63 | |
| 64 | IOReturn Xbox360ControllerClass::setProperties(OSObject *properties) |
| 65 | { |
| 66 | Xbox360Peripheral *owner = GetOwner(this); |
| 67 | if (owner == NULL) |
| 68 | return kIOReturnUnsupported; |
| 69 | return owner->setProperties(properties); |
| 70 | } |
| 71 | |
| 72 | // Returns the HID descriptor for this device |
| 73 | IOReturn Xbox360ControllerClass::newReportDescriptor(IOMemoryDescriptor **descriptor) const |
nothing calls this directly
no test coverage detected