摘要: 仅仅为了方便操作。记录,防止丢失重写。//////////////////////mouse.h//模拟鼠标的常见操作////////////////////#pragma once#include <windows.h>class MOUSE{private: //坐标变量 POINT point;public: //移动类函数 void Move(int x,int y); void RelativeMove(int cx,int cy); void SavePos(); void RestorePos(); //锁定... 阅读全文
posted @ 2012-05-27 19:44 little evil 阅读(2644) 评论(0) 推荐(0) 编辑