| 732 | } |
| 733 | |
| 734 | void SM_DoSingleExecFwds(IPluginContext *ctx) |
| 735 | { |
| 736 | IPluginFunction *pf; |
| 737 | |
| 738 | if ((pf = ctx->GetFunctionByName("OnServerCfg")) != NULL) |
| 739 | { |
| 740 | pf->Execute(NULL); |
| 741 | } |
| 742 | |
| 743 | if ((pf = ctx->GetFunctionByName("OnConfigsExecuted")) != NULL) |
| 744 | { |
| 745 | pf->Execute(NULL); |
| 746 | } |
| 747 | } |
| 748 | |
| 749 | void SM_ConfigsExecuted_Plugin(unsigned int serial) |
| 750 | { |
no test coverage detected