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.

67 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1990, 1991 Microsoft Corporation
  3. Module Name:
  4. initdat.c
  5. Abstract:
  6. Author:
  7. Environment:
  8. Kernel mode.
  9. Revision History:
  10. --*/
  11. #include "cmp.h"
  12. //
  13. // ***** INIT *****
  14. //
  15. //
  16. // Data for CmGetSystemControlValues
  17. //
  18. //
  19. // ----- CmControlVector -----
  20. //
  21. #ifdef ALLOC_DATA_PRAGMA
  22. #pragma data_seg("INIT")
  23. #endif
  24. PCHAR SearchStrings[] = {
  25. "Ver", "Rev", "Rel", "v0", "v1", "v2", "v3", "v4", "v5",
  26. "v6", "v7", "v8", "v9", "v 0", "v 1", "v 2", "v 3", "v 4",
  27. "v 5", "v 6", "v 7", "v 8", "v 9", NULL };
  28. PCHAR BiosBegin = { 0 };
  29. PCHAR Start = { 0 };
  30. PCHAR End = { 0 };
  31. UCHAR CmpID[] = "ia64 Family %u Model %u Stepping %u";
  32. WCHAR CmpVendorID[] = L"VendorIdentifier";
  33. WCHAR CmpProcessorNameString[] = L"ProcessorNameString";
  34. WCHAR CmpFeatureBits[] = L"FeatureSet";
  35. WCHAR CmpMHz[] = L"~MHz";
  36. WCHAR CmpUpdateSignature[] = L"Update Signature";
  37. #ifdef ALLOC_DATA_PRAGMA
  38. #pragma data_seg("PAGE")
  39. #endif
  40. UCHAR CmpIntelID[] = "GenuineIntel";
  41. UCHAR CmpItanium [] = "Itanium";
  42. UCHAR CmpMcKinley[] = "McKinley";
  43. UCHAR CmpIA64Proc[] = "IA64";
  44. #ifdef ALLOC_DATA_PRAGMA
  45. #pragma data_seg()
  46. #endif