📄 mouse.h
字号:
#ifndef _MOUSE_H
#define _MOUSE_H
typedef struct {
int iPosX, iPosY;
int iEvent;
DWORD dwDownTime;
}CMouseInfo;
// mouse event define
const int _MOUSE_NONE =0;
const int _MOUSE_CLICK =10;
const int _MOUSE_DOWN =01;
const int _MOUSE_HOLD =11;
const int _MOUSE_RIGHTCLICK =-10;
const int _MOUSE_RIGHTDOWN =-01;
const int _MOUSE_RIGHTHOLD =-11;
const int _MOUSE_ON =20;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -