| 1198 | } |
| 1199 | |
| 1200 | static int Tcl_ops_setParameter(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) { |
| 1201 | wrapper->resetCommandLine(argc, 1, argv); |
| 1202 | |
| 1203 | if (OPS_setParameter() < 0) return TCL_ERROR; |
| 1204 | |
| 1205 | return TCL_OK; |
| 1206 | } |
| 1207 | |
| 1208 | static int Tcl_ops_getPID(ClientData clientData, Tcl_Interp *interp, int argc, TCL_Char **argv) |
| 1209 | { |
nothing calls this directly
no test coverage detected