autoscrl.h
上传用户:xhy777
上传日期:2007-02-14
资源大小:24088k
文件大小:0k
源码类别:

系统编程

开发平台:

Visual C++

  1. // stuff for doing auto scrolling
  2. #define NUM_POINTS 3
  3. typedef struct { // asd
  4.     int iNextSample;
  5.     DWORD dwLastScroll;
  6.     BOOL bFull;
  7.     POINT pts[NUM_POINTS];
  8.     DWORD dwTimes[NUM_POINTS];
  9. } AUTO_SCROLL_DATA;
  10. #define DAD_InitScrollData(pad) (pad)->bFull = FALSE, (pad)->iNextSample = 0, (pad)->dwLastScroll = 0
  11. BOOL DAD_AutoScroll(HWND hwnd, AUTO_SCROLL_DATA *pad, const POINT *pptNow);