1234567891011121314151617181920212223242526272829 |
- /*
- * w_DefPullWidnow.h
- *
- * Created on: 2021年8月10日
- * Author: Admin
- */
- #ifndef JNI_CPULLWINDOW_W_DEFPULLWIDNOW_H_
- #define JNI_CPULLWINDOW_W_DEFPULLWIDNOW_H_
- #include "control/ZKBase.h"
- #include "system/Thread.h"
- #include "utils/Log.h"
- #include "utils/VelocityTracker.h"
- #define CPullWindow_Pull_Top 0 /// 窗口拉取有效区域
- #define CPullWindow_Pull_High 50 /// 窗口拉取有效区域
- #define CPullWindow_ROLL_SPEED 30 /// 窗口滚动速度
- #define WBETWEEN_PullWindow(i,sMin,sMax) (i >= sMin && i <= sMax)
- struct PWPOINT{
- int x;
- int y;
- };
- #endif /* JNI_CPULLWINDOW_W_DEFPULLWIDNOW_H_ */
|