| 189 | } |
| 190 | |
| 191 | void b3PluginManager::addNotification(const struct b3Notification& notification) |
| 192 | { |
| 193 | if (m_data->m_numNotificationPlugins > 0) |
| 194 | { |
| 195 | m_data->m_notifications[m_data->m_activeNotificationsBufferIndex].push_back(notification); |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | int b3PluginManager::loadPlugin(const char* pluginPath, const char* postFixStr) |
| 200 | { |
no test coverage detected