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.
|
|
/*++
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
|