Leaked source code of windows server 2003
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.

46 lines
1.4 KiB

  1. //---------------------------------------------------------------------------
  2. // syscolors.h
  3. //---------------------------------------------------------------------------
  4. extern WCHAR *pszSysColorNames[];
  5. extern const int iSysColorSize;
  6. #ifdef SYSCOLOR_STRINGS
  7. WCHAR *pszSysColorNames[] =
  8. {
  9. L"Scrollbar", // 0
  10. L"Background", // 1
  11. L"ActiveTitle", // 2
  12. L"InactiveTitle", // 3
  13. L"Menu", // 4
  14. L"Window", // 5
  15. L"WindowFrame", // 6
  16. L"MenuText", // 7
  17. L"WindowText", // 8
  18. L"TitleText", // 9
  19. L"ActiveBorder", // 10
  20. L"InactiveBorder", // 11
  21. L"AppWorkspace", // 12
  22. L"Hilight", // 13
  23. L"HilightText", // 14
  24. L"ButtonFace", // 15
  25. L"ButtonShadow", // 16
  26. L"GrayText", // 17
  27. L"ButtonText", // 18
  28. L"InactiveTitleText", // 19
  29. L"ButtonHilight", // 20
  30. L"ButtonDkShadow", // 21
  31. L"ButtonLight", // 22
  32. L"InfoText", // 23
  33. L"InfoWindow", // 24
  34. L"ButtonAlternateFace", // 25
  35. L"HotTrackingColor", // 26
  36. L"GradientActiveTitle", // 27
  37. L"GradientInactiveTitle", // 28
  38. L"MenuHilight", // 29
  39. L"MenuBar", // 30
  40. };
  41. const int iSysColorSize = ARRAYSIZE(pszSysColorNames);
  42. #endif
  43. //---------------------------------------------------------------------------