windows-nt/Source/XPSP1/NT/base/ntos/config/ia64/initdat.c
2020-09-26 16:20:57 +08:00

68 lines
1.1 KiB
C

/*++
Copyright (c) 1990, 1991 Microsoft Corporation
Module Name:
initdat.c
Abstract:
Author:
Environment:
Kernel mode.
Revision History:
--*/
#include "cmp.h"
//
// ***** INIT *****
//
//
// Data for CmGetSystemControlValues
//
//
// ----- CmControlVector -----
//
#ifdef ALLOC_DATA_PRAGMA
#pragma data_seg("INIT")
#endif
PCHAR SearchStrings[] = {
"Ver", "Rev", "Rel", "v0", "v1", "v2", "v3", "v4", "v5",
"v6", "v7", "v8", "v9", "v 0", "v 1", "v 2", "v 3", "v 4",
"v 5", "v 6", "v 7", "v 8", "v 9", NULL };
PCHAR BiosBegin = { 0 };
PCHAR Start = { 0 };
PCHAR End = { 0 };
UCHAR CmpID[] = "ia64 Family %u Model %u Stepping %u";
WCHAR CmpVendorID[] = L"VendorIdentifier";
WCHAR CmpProcessorNameString[] = L"ProcessorNameString";
WCHAR CmpFeatureBits[] = L"FeatureSet";
WCHAR CmpMHz[] = L"~MHz";
WCHAR CmpUpdateSignature[] = L"Update Signature";
#ifdef ALLOC_DATA_PRAGMA
#pragma data_seg("PAGE")
#endif
UCHAR CmpIntelID[] = "GenuineIntel";
UCHAR CmpItanium [] = "Itanium";
UCHAR CmpMcKinley[] = "McKinley";
UCHAR CmpIA64Proc[] = "IA64";
#ifdef ALLOC_DATA_PRAGMA
#pragma data_seg()
#endif