rangeslider.h
上传用户:xmgzy123
上传日期:2007-01-07
资源大小:373k
文件大小:1k
源码类别:

SCSI/ASPI

开发平台:

WINDOWS

  1. #ifndef _RANGESLIDER_H_INC
  2. #define _RANGESLIDER_H_INC
  3. #include <windows.h>
  4. #define TOPSLIDER    0
  5. #define BOTTOMSLIDER 1
  6. typedef struct {
  7.   NMHDR hdr;
  8.   int which;  // TOPSLIDER, BOTTOMSLIDER
  9.   DWORD start;
  10.   DWORD finish;
  11.   DWORD newStart;
  12.   DWORD newFinish;
  13. } RSBNOTIFY, FAR *LPRSBNOTIFY;
  14. #define RSB_SETMIN       (WM_USER+100)
  15. #define RSB_SETMAX       (WM_USER+101)
  16. #define RSB_GETMIN       (WM_USER+102)
  17. #define RSB_GETMAX       (WM_USER+103)
  18. #define RSB_RESET        (WM_USER+104)
  19. #define RSB_SETSTART     (WM_USER+105)
  20. #define RSB_SETFINISH    (WM_USER+106)
  21. #define RSB_GETSTART     (WM_USER+107)
  22. #define RSB_GETFINISH    (WM_USER+108)
  23. #define RSB_SETTIC       (WM_USER+109)
  24. #define RSB_SNAP         (WM_USER+110)
  25. #define RSBN_STARTCHANGING  (WM_USER+200)
  26. #define RSBN_STARTCHANGED   (WM_USER+201)
  27. #define RSBN_FINISHCHANGING (WM_USER+202)
  28. #define RSBN_FINISHCHANGED  (WM_USER+203)
  29. int InitRangeSliderClass( void );
  30. #endif