| 935 | }; |
| 936 | struct QiFunc_cur_x : public QiFunc |
| 937 | { |
| 938 | QiFunc_cur_x() : QiFunc(0) {} |
| 939 | QiVar exec(const std::vector<QiVar>&, QiScriptInterpreter*) const override |
| 940 | { |
| 941 | POINT pt; |
| 942 | GetCursorPos(&pt); |
| 943 | return pt.x; |
| 944 | } |
| 945 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected