| 790 | |
| 791 | // External factory function |
| 792 | extern "C" void* FeedbackXBOBTFactory(CFAllocatorRef allocator, CFUUIDRef typeID) |
| 793 | { |
| 794 | void* result = NULL; |
| 795 | if (CFEqual(typeID, kIOForceFeedbackLibTypeID)) |
| 796 | result = (void*)FeedbackXBOBT::Alloc(); |
| 797 | return result; |
| 798 | } |
| 799 |
nothing calls this directly
no outgoing calls
no test coverage detected