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.

67 lines
952 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. #ifdef _X86_
  12. VOID
  13. CheckPentium(
  14. VOID
  15. );
  16. BOOL
  17. SetNpxEmulationState(
  18. VOID
  19. );
  20. BOOL
  21. CALLBACK
  22. PentiumDlgProc(
  23. IN HWND hdlg,
  24. IN UINT msg,
  25. IN WPARAM wParam,
  26. IN LPARAM lParam
  27. );
  28. WCHAR
  29. x86DetermineSystemPartition(
  30. VOID
  31. );
  32. extern WCHAR x86SystemPartitionDrive;
  33. extern WCHAR FloppylessBootPath[MAX_PATH];
  34. //
  35. // Pci Hal property page provider (pcihal.c).
  36. //
  37. DWORD
  38. PciHalCoInstaller(
  39. IN DI_FUNCTION InstallFunction,
  40. IN HDEVINFO DeviceInfoSet,
  41. IN PSP_DEVINFO_DATA DeviceInfoData OPTIONAL,
  42. IN OUT PCOINSTALLER_CONTEXT_DATA Context
  43. );
  44. BOOL
  45. ChangeBootTimeoutBootIni(
  46. IN UINT Timeout
  47. );
  48. #endif