External factory function
| 752 | |
| 753 | // External factory function |
| 754 | void* Control360Factory(CFAllocatorRef allocator, CFUUIDRef typeID) |
| 755 | { |
| 756 | void* result = NULL; |
| 757 | if (CFEqual(typeID, kIOForceFeedbackLibTypeID)) |
| 758 | result = (void*)Feedback360::Alloc(); |
| 759 | return result; |
| 760 | } |
nothing calls this directly
no outgoing calls
no test coverage detected