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.

48 lines
760 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. spi386.h
  5. Abstract:
  6. Header file for x86-specific stuff in system installation module.
  7. Author:
  8. Ted Miller (tedm) 4-Apr-1995
  9. Revision History:
  10. --*/
  11. #if defined(_AMD64_)
  12. WCHAR
  13. x86DetermineSystemPartition(
  14. VOID
  15. );
  16. extern WCHAR x86SystemPartitionDrive;
  17. extern WCHAR FloppylessBootPath[MAX_PATH];
  18. //
  19. // Pci Hal property page provider (pcihal.c).
  20. //
  21. DWORD
  22. PciHalCoInstaller(
  23. IN DI_FUNCTION InstallFunction,
  24. IN HDEVINFO DeviceInfoSet,
  25. IN PSP_DEVINFO_DATA DeviceInfoData OPTIONAL,
  26. IN OUT PCOINSTALLER_CONTEXT_DATA Context
  27. );
  28. BOOL
  29. ChangeBootTimeoutBootIni(
  30. IN UINT Timeout
  31. );
  32. #endif