| 1176 | } |
| 1177 | |
| 1178 | int OPS_SetStringList(std::vector<const char*>& data) |
| 1179 | { |
| 1180 | if (cmds == 0) return 0; |
| 1181 | DL_Interpreter* interp = cmds->getInterpreter(); |
| 1182 | return interp->setString(data); |
| 1183 | } |
| 1184 | |
| 1185 | int OPS_SetStringLists(std::vector<std::vector<const char*>>& data) |
| 1186 | { |
nothing calls this directly
no test coverage detected