| 574 | } |
| 575 | |
| 576 | size_t SourceModBase::FormatString(char *buffer, size_t maxlength, IPluginContext *pContext, const cell_t *params, unsigned int param) |
| 577 | { |
| 578 | char *fmt; |
| 579 | |
| 580 | pContext->LocalToString(params[param], &fmt); |
| 581 | |
| 582 | int lparam = ++param; |
| 583 | |
| 584 | return logicore.atcprintf(buffer, maxlength, fmt, pContext, params, &lparam); |
| 585 | } |
| 586 | |
| 587 | const char *SourceModBase::GetSourceModPath() const |
| 588 | { |
no outgoing calls
no test coverage detected