| 1169 | } |
| 1170 | |
| 1171 | int OPS_SetString(const char* str) |
| 1172 | { |
| 1173 | if (cmds == 0) return 0; |
| 1174 | DL_Interpreter* interp = cmds->getInterpreter(); |
| 1175 | return interp->setString(str); |
| 1176 | } |
| 1177 | |
| 1178 | int OPS_SetStringList(std::vector<const char*>& data) |
| 1179 | { |
no test coverage detected