1 /*++ 2 3 Copyright (c) 1998 Intel Corporation 4 5 Module Name: 6 7 efi.h 8 9 Abstract: 10 11 Public EFI header files 12 13 14 15 Revision History 16 17 --*/ 18 19 20 // Add a predefined macro to detect usage of the library 21 #ifndef _GNU_EFI 22 #define _GNU_EFI 23 #endif 24 25 // 26 // Build flags on input 27 // EFI32 28 // EFI_DEBUG - Enable debugging code 29 // EFI_NT_EMULATOR - Building for running under NT 30 // 31 32 33 #ifndef _EFI_INCLUDE_ 34 #define _EFI_INCLUDE_ 35 36 #define EFI_FIRMWARE_VENDOR L"INTEL" 37 #define EFI_FIRMWARE_MAJOR_REVISION 12 38 #define EFI_FIRMWARE_MINOR_REVISION 33 39 #define EFI_FIRMWARE_REVISION ((EFI_FIRMWARE_MAJOR_REVISION <<16) | (EFI_FIRMWARE_MINOR_REVISION)) 40 41 #include "efibind.h" 42 #include "eficompiler.h" 43 #include "efidef.h" 44 #include "efidevp.h" 45 #include "efipciio.h" 46 #include "efiprot.h" 47 #include "eficon.h" 48 #include "eficonex.h" 49 #include "efiser.h" 50 #include "efi_nii.h" 51 #include "efipxebc.h" 52 #include "efinet.h" 53 #include "efiapi.h" 54 #include "efifs.h" 55 #include "efierr.h" 56 #include "efiui.h" 57 #include "efiip.h" 58 #include "efiudp.h" 59 #include "efitcp.h" 60 #include "efipoint.h" 61 #include "efishell.h" 62 63 #endif 64