CommonHead.h
上传用户:sz81710966
上传日期:2013-03-01
资源大小:409k
文件大小:1k
源码类别:

多国语言处理

开发平台:

Visual C++

  1. #ifndef COMMON_HEAD_H
  2. #define COMMON_HEAD_H
  3. #include <afxtempl.h>
  4. #define TEST_CODE_LENGTH 2
  5. #define LEN_MAX_DIRECTORY 255
  6. #define LEN_WIDTH_MAX 32
  7. #define LEN_WIDTH_MIN 8
  8. #define LEN_WIDTH_INIT 16
  9. #define COLOR_BIT_1 1
  10. #define COLOR_BIT_8     8
  11. #define COLOR_BIT_16 16
  12. #define COLOR_BIT_24    24
  13. #define TRAN_FILE_BUF_LEN 1024
  14. #define GB2312_BEGIN 0xA1A1
  15. #define GBK_BEGIN 0x8140
  16. #define GB18030_BEGIN 0x8140
  17. #define BIG5_BEGIN 0x8140
  18. #define UNICODE_BEGIN 0x4E00
  19. #define GB2312_END 0xF7FE
  20. #define GBK_END 0xFEFE
  21. #define GB18030_END 0xFEFE
  22. #define BIG5_END 0xFEFE
  23. #define UNICODE_END 0x9F00
  24. #define SOURCE_ALL_CODE   0
  25. #define SOURCE_HAND_EDIT   1
  26. #define SOURCE_SELECT_FILE   2
  27. #define FILE_TEMP_TRAN "C:\temp.txt"
  28. typedef struct tagFONTSHOWSIZE
  29. {
  30. CSize memSize;
  31. CSize fontSize;
  32. int colorUnit;
  33. }FONT_SHOW_SIZE;
  34. typedef struct tagFONT_DIFF_OFFSET
  35. {
  36. int realOffset;
  37. int diffCount;
  38. }FONT_DIFF_OFFSET;
  39. typedef CList < FONT_DIFF_OFFSET * ,FONT_DIFF_OFFSET * > COffsetDiffList;
  40. #endif