| 1075 | } |
| 1076 | |
| 1077 | int OPS_SetIntDictOutput(std::map<const char*, int>& data) |
| 1078 | { |
| 1079 | if (cmds == 0) return 0; |
| 1080 | DL_Interpreter* interp = cmds->getInterpreter(); |
| 1081 | return interp->setInt(data); |
| 1082 | } |
| 1083 | |
| 1084 | int OPS_SetIntDictListOutput(std::map<const char*, std::vector<int>>& data) |
| 1085 | { |
nothing calls this directly
no test coverage detected