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.

49 lines
547 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. amd64.h
  5. Abstract:
  6. This header file defines the Amd64 specific interfaces that are
  7. callable from the main loader code.
  8. Author:
  9. Forrest Foltz (forrestf) 20-Apr-00
  10. Revision History:
  11. --*/
  12. #if !defined(_AMD64BL_H_)
  13. #define _AMD64BL_H_
  14. #include "bootx86.h"
  15. BOOLEAN
  16. BlDetectAmd64(
  17. VOID
  18. );
  19. ARC_STATUS
  20. BlPrepareAmd64Phase1(
  21. VOID
  22. );
  23. ARC_STATUS
  24. BlPrepareAmd64Phase2(
  25. VOID
  26. );
  27. VOID
  28. BlSwitchToAmd64Mode(
  29. VOID
  30. );
  31. #endif // _AMD64BL_H_