| 1394 | } |
| 1395 | }; |
| 1396 | struct QiFunc_file_move : public QiFunc |
| 1397 | { |
| 1398 | QiFunc_file_move() : QiFunc(2) {} |
| 1399 | QiVar exec(const std::vector<QiVar>& args, QiScriptInterpreter*) const override |
| 1400 | { |
| 1401 | return static_cast<bool>(MoveFileW(String::toWString(args[0].toString()).c_str(), String::toWString(args[1].toString()).c_str())); |
| 1402 | } |
nothing calls this directly
no test coverage detected