| 566 | } |
| 567 | |
| 568 | void CPlugin::LibraryActions(LibraryAction action) |
| 569 | { |
| 570 | if (action == LibraryAction_Removed) { |
| 571 | if (!m_AddedLibraries) |
| 572 | return; |
| 573 | m_AddedLibraries = false; |
| 574 | } |
| 575 | |
| 576 | for (auto iter = m_Libraries.begin(); iter != m_Libraries.end(); iter++) |
| 577 | g_PluginSys.OnLibraryAction((*iter).c_str(), action); |
| 578 | |
| 579 | if (action == LibraryAction_Added) |
| 580 | m_AddedLibraries = true; |
| 581 | } |
| 582 | |
| 583 | bool CPlugin::SetPauseState(bool paused) |
| 584 | { |
no test coverage detected