tchScr.h
上传用户:wealth48
上传日期:2022-06-24
资源大小:1701k
文件大小:1k
- #include "../inc/macro.h"
- #ifndef __TCHSCR_H__
- #define __TCHSCR_H__
- /////////触摸屏动作////////
- #define TCHSCR_ACTION_NULL 0
- #define TCHSCR_ACTION_CLICK 1 //触摸屏单击
- #define TCHSCR_ACTION_DBCLICK 2 //触摸屏双击
- #define TCHSCR_ACTION_DOWN 3 //触摸屏按下
- #define TCHSCR_ACTION_UP 4 //触摸屏抬起
- #define TCHSCR_ACTION_MOVE 5 //触摸屏移动
- typedef struct {
- int x;
- int y;
- int action;
- }tsdata, *Ptsdata;
- void TchScr_GetScrXY(int *x, int *y);
- void Touch_Screen_Task(void *Id); //触摸屏任务
- #endif //#ifndef __TCHSCR_H__