Batched Parameters Support to Server-Library

To enable batched parameter support in Open Server Server-Library, set the SRV_S_PARAM_BATCHING server property to CS_TRUE.

For example, before srv_run():

if (srv_props(ctos_ctx->cx_context, CS_SET,
SRV_S_PARAM_BATCHING, (CS_VOID *)&cs_true, sizeof(cs_true), NULL) != CS_SUCCEED)
{...}
Then, srv_xferdata() has two new return codes when a command contains multiple sets of command parameters.