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.

53 lines
884 B

  1. /*++
  2. Copyright (c) 1998 Intel Corporation
  3. Module Name:
  4. efi.h
  5. Abstract:
  6. Public EFI header files
  7. Revision History
  8. --*/
  9. /*
  10. * Build flags on input
  11. * EFI32
  12. * EFI_DEBUG - Enable debugging code
  13. * EFI_NT_EMULATOR - Building for running under NT
  14. */
  15. #ifndef _EFI_INCLUDE_
  16. #define _EFI_INCLUDE_
  17. #define EFI_FIRMWARE_VENDOR L"INTEL"
  18. #define EFI_FIRMWARE_MAJOR_REVISION 12
  19. #define EFI_FIRMWARE_MINOR_REVISION 24
  20. #define EFI_FIRMWARE_REVISION ((EFI_FIRMWARE_MAJOR_REVISION <<16) | (EFI_FIRMWARE_MINOR_REVISION))
  21. #if defined(_WIN64)
  22. #include "efibind64.h"
  23. #else
  24. #include "efibind32.h"
  25. #endif
  26. #include "efidef.h"
  27. #include "efidevp.h"
  28. #include "efiprot.h"
  29. #include "eficon.h"
  30. #include "efiser.h"
  31. #include "efi_nii.h"
  32. #include "efipxebc.h"
  33. #include "efinet.h"
  34. #include "efiapi.h"
  35. #include "efifs.h"
  36. #include "efierr.h"
  37. #endif