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.

66 lines
2.7 KiB

  1. /*---------------------------------------------**
  2. ** Copyright (c) 1998 Microsoft Corporation **
  3. ** All Rights reserved **
  4. ** **
  5. ** keyinfo.c **
  6. ** **
  7. ** registry keys - TSREG **
  8. ** 07-01-98 a-clindh Created **
  9. **---------------------------------------------*/
  10. #include <windows.h>
  11. #include <TCHAR.H>
  12. #include "tsreg.h"
  13. ///////////////////////////////////////////////////////////////////////////////
  14. KEY_INFO g_KeyInfo[KEYCOUNT] = {
  15. { TEXT("Shadow Bitmap Enabled"), 0x0, 0x0 }, // 0
  16. { TEXT("Dedicated Terminal"), 0x1, 0x1 }, // 1
  17. { TEXT("BitmapCacheSize"), 0x5dc, 0x5dc }, // 2
  18. //
  19. // g_KeyInfo - 3 through 12
  20. //
  21. { TEXT("GlyphCacheCell1Size"), 0x4, 0x4 }, // 3
  22. { TEXT("GlyphCacheCell2Size"), 0x4, 0x4 }, // 4
  23. { TEXT("GlyphCacheCell3Size"), 0x8, 0x8 }, // 5
  24. { TEXT("GlyphCacheCell4Size"), 0x8, 0x8 }, // 6
  25. { TEXT("GlyphCacheCell5Size"), 0x10, 0x10 }, // 7
  26. { TEXT("GlyphCacheCell6Size"), 0x20, 0x20 }, // 8
  27. { TEXT("GlyphCacheCell7Size"), 0x40, 0x40 }, // 9
  28. { TEXT("GlyphCacheCell8Size"), 0x80, 0x80 }, // 10
  29. { TEXT("GlyphCacheCell9Size"), 0x100, 0x100 }, // 11
  30. { TEXT("GlyphCacheCell10Size"), 0x200, 0x200 }, // 12
  31. //
  32. // g_KeyInfo - 13 through 17
  33. //
  34. { TEXT("BitmapCache1Prop"), 0xA, 0xA }, // 13
  35. { TEXT("BitmapCache2Prop"), 0x14, 0x14 }, // 14
  36. { TEXT("BitmapCache3Prop"), 0x46, 0x46 }, // 15
  37. { TEXT("BitmapCache4Prop"), 0x0, 0x0 }, // 16
  38. { TEXT("BitmapCache5Prop"), 0x0, 0x0 }, // 17
  39. //
  40. // g_KeyInfo - 18 through 20
  41. //
  42. { TEXT("TextFragmentCellSize"), 0x100, 0x100 }, // 18
  43. { TEXT("GlyphSupportLevel"), 0x3, 0x3 }, // 19
  44. { TEXT("Order Draw Threshold"), 0x19, 0x19 }, // 20
  45. // begin new registry keys 21 - 31 (32 total keys)
  46. //////////////////////////
  47. { TEXT("BitmapCacheNumCellCaches"), 0x3, 0x3 }, // 21
  48. { TEXT("BitmapCache1Persistence"), 0x0, 0x0 }, // 22
  49. { TEXT("BitmapCache2Persistence"), 0x0, 0x0 }, // 23
  50. { TEXT("BitmapCache3Persistence"), 0x0, 0x0 }, // 24
  51. { TEXT("BitmapCache4Persistence"), 0x0, 0x0 }, // 25
  52. { TEXT("BitmapCache5Persistence"), 0x0, 0x0 } // 26
  53. };
  54. // end of file
  55. ///////////////////////////////////////////////////////////////////////////////