2018-08-09 11:18:32 +00:00
|
|
|
/*++
|
|
|
|
|
|
|
|
Copyright (c) 1998 Intel Corporation
|
|
|
|
|
|
|
|
Module Name:
|
|
|
|
|
|
|
|
efi.h
|
|
|
|
|
|
|
|
Abstract:
|
|
|
|
|
|
|
|
Public EFI header files
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Revision History
|
|
|
|
|
|
|
|
--*/
|
|
|
|
|
|
|
|
|
|
|
|
// Add a predefined macro to detect usage of the library
|
|
|
|
#ifndef _GNU_EFI
|
|
|
|
#define _GNU_EFI
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
|
|
|
// Build flags on input
|
|
|
|
// EFI32
|
|
|
|
// EFI_DEBUG - Enable debugging code
|
|
|
|
// EFI_NT_EMULATOR - Building for running under NT
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _EFI_INCLUDE_
|
|
|
|
#define _EFI_INCLUDE_
|
|
|
|
|
|
|
|
#define EFI_FIRMWARE_VENDOR L"INTEL"
|
|
|
|
#define EFI_FIRMWARE_MAJOR_REVISION 12
|
|
|
|
#define EFI_FIRMWARE_MINOR_REVISION 33
|
|
|
|
#define EFI_FIRMWARE_REVISION ((EFI_FIRMWARE_MAJOR_REVISION <<16) | (EFI_FIRMWARE_MINOR_REVISION))
|
|
|
|
|
|
|
|
#include "efibind.h"
|
|
|
|
#include "eficompiler.h"
|
|
|
|
#include "efidef.h"
|
|
|
|
#include "efidevp.h"
|
|
|
|
#include "efipciio.h"
|
|
|
|
#include "efiprot.h"
|
2018-08-09 11:20:07 +00:00
|
|
|
//#include "eficon.h"
|
|
|
|
//#include "efiser.h"
|
|
|
|
//#include "efi_nii.h"
|
|
|
|
//#include "efipxebc.h"
|
|
|
|
//#include "efinet.h"
|
2018-08-09 11:18:32 +00:00
|
|
|
#include "efiapi.h"
|
2018-08-09 11:20:07 +00:00
|
|
|
//#include "efifs.h"
|
2018-08-09 11:18:32 +00:00
|
|
|
#include "efierr.h"
|
2018-08-09 11:20:07 +00:00
|
|
|
//#include "efiui.h"
|
|
|
|
//#include "efiip.h"
|
|
|
|
//#include "efiudp.h"
|
|
|
|
//#include "efitcp.h"
|
|
|
|
//#include "efipoint.h"
|
|
|
|
//#include "efisetjmp.h"
|
2018-08-09 11:18:32 +00:00
|
|
|
|
|
|
|
#endif
|