| 1137 | PostMessageW(wnd, WM_QUIT, 0, 0); |
| 1138 | return true; |
| 1139 | } |
| 1140 | }; |
| 1141 | struct QiFunc_wnd_show : public QiFunc |
| 1142 | { |
| 1143 | QiFunc_wnd_show() : QiFunc(1, 2) {} |
| 1144 | QiVar exec(const std::vector<QiVar>& args, QiScriptInterpreter*) const override |
| 1145 | { |
| 1146 | auto wnd = reinterpret_cast<HWND>(args[0].toPointer()); |
| 1147 | if (!IsWindow(wnd)) return false; |