| 243 | } |
| 244 | |
| 245 | static cell_t BindAdminIdentity(IPluginContext *pContext, const cell_t *params) |
| 246 | { |
| 247 | AdminId id = params[1]; |
| 248 | char *auth, *ident; |
| 249 | |
| 250 | pContext->LocalToString(params[2], &auth); |
| 251 | pContext->LocalToString(params[3], &ident); |
| 252 | |
| 253 | return adminsys->BindAdminIdentity(id, auth, ident); |
| 254 | } |
| 255 | |
| 256 | static cell_t SetAdminFlag(IPluginContext *pContext, const cell_t *params) |
| 257 | { |
nothing calls this directly
no test coverage detected