| 423 | } |
| 424 | |
| 425 | bool CForward::RemoveFunction(IPluginContext *pContext, funcid_t index) |
| 426 | { |
| 427 | IPluginFunction *pFunc = pContext->GetFunctionById(index); |
| 428 | |
| 429 | if (!pFunc) |
| 430 | { |
| 431 | return false; |
| 432 | } |
| 433 | |
| 434 | return RemoveFunction(pFunc); |
| 435 | } |
| 436 | |
| 437 | bool CForward::RemoveFunction(IPluginFunction *func) |
| 438 | { |
no test coverage detected