Handle message sent to the driver
| 694 | |
| 695 | // Handle message sent to the driver |
| 696 | IOReturn Xbox360Peripheral::message(UInt32 type,IOService *provider,void *argument) |
| 697 | { |
| 698 | switch(type) { |
| 699 | case kIOMessageServiceIsTerminated: |
| 700 | case kIOMessageServiceIsRequestingClose: |
| 701 | default: |
| 702 | return super::message(type,provider,argument); |
| 703 | } |
| 704 | } |
| 705 | |
| 706 | // This returns the abs() value of a short, swapping it if necessary |
| 707 | static inline Xbox360_SShort getAbsolute(Xbox360_SShort value) |
nothing calls this directly
no outgoing calls
no test coverage detected