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

SCSI/ASPI

开发平台:

WINDOWS

  1. #ifndef _CONFIG_H_INC
  2. #define _CONFIG_H_INC
  3. /*
  4.  * When commctrl.h does not define the DLLVERSIONINFO structure, set
  5.  * _CONFIG_DLLVERINFO to 1.  The headers used in mingw32 do not define
  6.  * this structure.
  7.  */
  8. #define _CONFIG_DLLVERINFO    0
  9. /*
  10.  * Handle some missing defines in the mingw32 headers
  11.  */
  12. #ifndef TB_SETIMAGELIST
  13. #define TB_SETIMAGELIST (WM_USER+48)
  14. #endif
  15. #ifndef TB_SETHOTIMAGELIST
  16. #define TB_SETHOTIMAGELIST (WM_USER+52)
  17. #endif
  18. #ifndef TB_SETDISABLEDIMAGELIST
  19. #define TB_SETDISABLEDIMAGELIST (WM_USER+54)
  20. #endif
  21. #ifndef TB_SETSTYLE
  22. #define TB_SETSTYLE (WM_USER+56)
  23. #endif
  24. #ifndef TB_GETSTYLE
  25. #define TB_GETSTYLE (WM_USER+57)
  26. #endif
  27. #ifndef TTN_GETDISPINFO
  28.   #define TTN_GETDISPINFOA        (TTN_FIRST - 0)
  29.   #define TTN_GETDISPINFOW        (TTN_FIRST - 10)
  30.   #ifdef UNICODE
  31.   #define TTN_GETDISPINFO         TTN_GETDISPINFOW
  32.   #else
  33.   #define TTN_GETDISPINFO         TTN_GETDISPINFOA
  34.   #endif
  35. #endif
  36. /*
  37.  * Use the "flat" style toolbar?
  38.  */
  39. #ifndef TBSTYLE_FLAT
  40. #define TBSTYLE_FLAT        0x0800
  41. #define TBSTYLE_TRANSPARENT 0x8000
  42. #endif
  43. #define _CONFIG_FLAT_TOOLBAR 1
  44. #endif