| 1183 | } |
| 1184 | |
| 1185 | int OPS_SetStringLists(std::vector<std::vector<const char*>>& data) |
| 1186 | { |
| 1187 | if (cmds == 0) return 0; |
| 1188 | DL_Interpreter* interp = cmds->getInterpreter(); |
| 1189 | return interp->setString(data); |
| 1190 | } |
| 1191 | |
| 1192 | int OPS_SetStringDict(std::map<const char*, const char*>& data) |
| 1193 | { |
nothing calls this directly
no test coverage detected