| 16 | } |
| 17 | |
| 18 | bool AddonManager::LoadUSBAddon(GPAddon* addon) { |
| 19 | bool ret = LoadAddon(addon); |
| 20 | if ( ret == true ) |
| 21 | USBHostManager::getInstance().pushListener(addon->getListener()); |
| 22 | return ret; |
| 23 | } |
| 24 | |
| 25 | void AddonManager::ReinitializeAddons() { |
| 26 | // Loop through all addons and process any that match our type |
no test coverage detected