| 411 | } |
| 412 | |
| 413 | bool CForward::AddFunction(IPluginContext *pContext, funcid_t index) |
| 414 | { |
| 415 | IPluginFunction *pFunc = pContext->GetFunctionById(index); |
| 416 | |
| 417 | if (!pFunc) |
| 418 | { |
| 419 | return false; |
| 420 | } |
| 421 | |
| 422 | return AddFunction(pFunc); |
| 423 | } |
| 424 | |
| 425 | bool CForward::RemoveFunction(IPluginContext *pContext, funcid_t index) |
| 426 | { |
no test coverage detected