| 323 | } |
| 324 | |
| 325 | static cell_t GetPluginIterator(IPluginContext *pContext, const cell_t *params) |
| 326 | { |
| 327 | IPluginIterator *iter = scripts->GetPluginIterator(); |
| 328 | |
| 329 | Handle_t hndl = handlesys->CreateHandle(g_PlIter, iter, pContext->GetIdentity(), g_pCoreIdent, NULL); |
| 330 | |
| 331 | if (hndl == BAD_HANDLE) |
| 332 | { |
| 333 | iter->Release(); |
| 334 | } |
| 335 | |
| 336 | return hndl; |
| 337 | } |
| 338 | |
| 339 | static cell_t MorePlugins(IPluginContext *pContext, const cell_t *params) |
| 340 | { |
nothing calls this directly
no test coverage detected