config.h
上传用户:hmc_gdtv
上传日期:2013-08-04
资源大小:798k
文件大小:2k
源码类别:

Windows Mobile

开发平台:

Visual C++

  1. #ifndef CONFIG_H
  2. #define CONFIG_H
  3. #if ((defined(_WIN32_WCE_PSPC) || defined(WIN32_PLATFORM_PSPC)) && (_WIN32_WCE>=300 && _WIN32_WCE<400)) && !BE300
  4. #define POCKETPC 1
  5. #endif
  6. #if _WIN32_WCE>=400
  7. #define _WIN32_WCE_PSPC
  8. #else
  9. #define _WIN32_WCE_PSPC
  10. #endif
  11. #if defined(_WIN32_WCE_PSPC) || BE300
  12. #define PSPC 1
  13. #else
  14. #define HPC 1
  15. #endif
  16. #ifdef _WIN32_WCE
  17. #define HR_REG_PERM 0
  18. #else
  19. #define HR_REG_PERM KEY_READ|KEY_WRITE
  20. #endif
  21. #ifndef CLEARTYPE_QUALITY
  22. #define CLEARTYPE_QUALITY 5
  23. #endif
  24. // default font
  25. #define DEF_FACE   _T("Tahoma")
  26. #define DEF_SIZE   12
  27. #define DEF_BOLD   1
  28. #define DEF_CLEARTYPE   1
  29. #define DEF_FONTHACK   0
  30. // default sizes
  31. #define DEF_INDENT   10
  32. #define DEF_MARGINS   3
  33. #define DEF_BOTTOM_MARGIN 6
  34. #define DEF_JUSTIFY   1
  35. #define DEF_ORIENTATION   0
  36. #define DEF_HYPHENATE   0
  37. #define DEF_COLUMNS   1
  38. #define DEF_SHOWPROGRESS  1
  39. // default settings
  40. #define DEF_USEDICT   1
  41. #define DEF_USESLOVOED   0
  42. #define DEF_FONTCACHE   6
  43. #define DEF_FBUF   16384
  44. #define DEF_ROTB   1
  45. #define DEF_BOOKMARKS   64
  46. #define DEF_SAVETOFILES   0
  47. #define DEF_AUTOREPEATLIMIT 0
  48. #define REPEAT_THRESHOLD  200
  49. #define DEF_SAVEINTERVAL  (300*1000)
  50. #define DEF_GAMMA   2200000
  51. #define DEF_AS_DELAY   800000 // 0.8s
  52. #define DEF_PROGRESSBAR   5
  53. #define RECENT_BASE 500
  54. #define RECENT_FILES  8
  55. #define DICT_BASE   (RECENT_BASE+RECENT_FILES+1)
  56. #define DICT_FILES  100
  57. #define COLORS_BASE (DICT_BASE+DICT_FILES+1)
  58. #define COLORS_MAX  100
  59. UINT getIDR_DIALOG();
  60. UINT getIDR_CONTENTS();
  61. UINT getIDR_MAINFRAME();
  62. #define cIDR_DIALOG getIDR_DIALOG()
  63. #define cIDR_CONTENTS getIDR_CONTENTS()
  64. #define cIDR_MAINFRAME getIDR_MAINFRAME()
  65. #endif