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) 1995 Microsoft Corporation
Module Name:
spi386.h
Abstract:
Header file for x86-specific stuff in system installation module.
Author:
Ted Miller (tedm) 4-Apr-1995
Revision History:
--*/
#ifdef _X86_
VOID CheckPentium( VOID );
BOOL SetNpxEmulationState( VOID );
BOOL CALLBACK PentiumDlgProc( IN HWND hdlg, IN UINT msg, IN WPARAM wParam, IN LPARAM lParam );
WCHAR x86DetermineSystemPartition( VOID );
extern WCHAR x86SystemPartitionDrive; extern WCHAR FloppylessBootPath[MAX_PATH];
//
// Pci Hal property page provider (pcihal.c).
//
DWORD PciHalCoInstaller( IN DI_FUNCTION InstallFunction, IN HDEVINFO DeviceInfoSet, IN PSP_DEVINFO_DATA DeviceInfoData OPTIONAL, IN OUT PCOINSTALLER_CONTEXT_DATA Context );
BOOL ChangeBootTimeoutBootIni( IN UINT Timeout );
#endif
|