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.
 
 
 
 
 
 

66 lines
1.1 KiB

/*++
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 };
CHAR 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
CHAR CmpIntelID[] = "GenuineIntel";
CHAR CmpItanium [] = "Itanium";
CHAR CmpItanium2[] = "Itanium 2";
#ifdef ALLOC_DATA_PRAGMA
#pragma data_seg()
#endif