from ctypes import *def get_mouse_point(): po = POINT() windll.user32.GetCursorPos(byref(po)) return int(po.x), int(po.y)
04-24 61阅读
07-27 33阅读
05-23 211阅读
10-27 125阅读
05-23 89阅读
10-06 121阅读
08-02 83阅读
08-08 117阅读
08-01 102阅读
08-27 110阅读