Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.7 KiB

  1. ;***************************************************************************
  2. ; *
  3. ; Copyright (C) 1985-1989 by Microsoft Inc. *
  4. ; *
  5. ;***************************************************************************
  6. title Hardware Dependent Parameters
  7. %out config
  8. page ,132
  9. RGB macro R, G, B
  10. db R,G,B,0
  11. endm
  12. OEM segment public
  13. ; Machine dependent parameters
  14. dw 14 ;Height of vertical thumb
  15. dw 18 ;Width of horizontal thumb
  16. dw 2 ;Icon horiz compression factor
  17. dw 2 ;Icon vert compression factor
  18. dw 1 ;Cursor horz compression factor
  19. dw 1 ;Cursor vert compression factor
  20. dw 0 ;Kanji window height
  21. dw 1 ;cxBorder (thickness of vertical lines)
  22. dw 1 ;cyBorder (thickness of horizontal lines)
  23. ; Default system color values
  24. RGB 129,129,129 ;clrScrollbar
  25. RGB 192,192,192 ;clrDesktop
  26. RGB 000,000,128 ;clrActiveCaption
  27. RGB 255,255,255 ;clrInactiveCaption
  28. RGB 255,255,255 ;clrMenu
  29. RGB 255,255,255 ;clrWindow
  30. RGB 000,000,000 ;clrWindowFrame
  31. RGB 000,000,000 ;clrMenuText
  32. RGB 000,000,000 ;clrWindowText
  33. RGB 255,255,255 ;clrCaptionText
  34. RGB 128,128,128 ;clrActiveBorder
  35. RGB 255,255,255 ;clrInactiveBorder
  36. RGB 255,255,255 ;clrAppWorkspace
  37. RGB 000,000,128 ;clrHiliteBk
  38. RGB 255,255,255 ;clrHiliteText
  39. RGB 255,255,255 ;clrBtnFace
  40. RGB 128,128,128 ;clrBtnShadow
  41. RGB 128,128,128 ;clrGrayText
  42. RGB 000,000,000 ;clrBtnText
  43. ; dw 0 ;Unused words
  44. ; dw 0
  45. ; dw 0
  46. ; dw 0
  47. ; dw 0
  48. ; dw 0
  49. dw 0
  50. dw 0
  51. OEM ends
  52. end