| 584 | // in fbrmc.def |
| 585 | |
| 586 | EXPORT RM_ENTRY(rmc_embed_dsql_length) |
| 587 | { |
| 588 | ClearParamPool(); |
| 589 | ISC_USHORT *l = CobolToShort(&arg_vector[1]); |
| 590 | isc_embed_dsql_length(CobolToString(&arg_vector[0]), l); |
| 591 | ShortToCobol(&arg_vector[1], l); |
| 592 | |
| 593 | return (0); |
| 594 | } |
| 595 | |
| 596 | EXPORT RM_ENTRY(rmc_cancel_blob) |
| 597 | { |
nothing calls this directly
no test coverage detected