charset.h
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:1k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. /*
  2. COW : Character Oriented Windows
  3. charset.h : special characters and other customizing constants
  4. (IBM specific)
  5. ONLY USE SAFE CHARACTERS (VGA codepage 850)
  6. */
  7. /* Boxes */
  8. #define chTopSide1 ((char) 196)
  9. #define chBottomSide1 chTopSide1
  10. #define chLeftSide1 ((char) 179)
  11. #define chRightSide1 chLeftSide1
  12. #define chTopSide2 ((char) 205)
  13. #define chBottomSide2 chTopSide2
  14. #define chLeftSide2 ((char) 186)
  15. #define chRightSide2 chLeftSide2
  16. #define chTopLeftCorner1 ((char) 218)
  17. #define chTopRightCorner1 ((char) 191)
  18. #define chBottomLeftCorner1 ((char) 192)
  19. #define chBottomRightCorner1 ((char) 217)
  20. #define chMiddleLeft1 ((char) 195)
  21. #define chMiddleRight1 ((char) 180)
  22. #define chTopLeftCorner2 ((char) 201)
  23. #define chTopRightCorner2 ((char) 187)
  24. #define chBottomLeftCorner2 ((char) 200)
  25. #define chBottomRightCorner2 ((char) 188)
  26. #define chUpArrow ((char) 24)
  27. #define chDownArrow ((char) 25)
  28. #define chRightArrow ((char) 26)
  29. #define chLeftArrow ((char) 27)
  30. #define chBullet ((char) 7)
  31. #define chMiddleDot ((char) 0xFA) /* middle dot */
  32. #define chScrollbar ((char) 0xb0) /* hash */
  33. #define chElevator ' '
  34. #define chShadowInit ((char) 0xb1) /* other hash */
  35. #ifdef WINDOW_OVERLAP
  36. #define chClose ((char) 0xDC)
  37. #define chZoomIn ((char) 0x1E)
  38. #endif /*WINDOW_OVERLAP*/