mirror of https://github.com/tongzx/nt5src
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
53 lines
884 B
/*++
|
|
|
|
Copyright (c) 1998 Intel Corporation
|
|
|
|
Module Name:
|
|
|
|
efi.h
|
|
|
|
Abstract:
|
|
|
|
Public EFI header files
|
|
|
|
|
|
|
|
Revision History
|
|
|
|
--*/
|
|
|
|
/*
|
|
* 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 24
|
|
#define EFI_FIRMWARE_REVISION ((EFI_FIRMWARE_MAJOR_REVISION <<16) | (EFI_FIRMWARE_MINOR_REVISION))
|
|
|
|
#if defined(_WIN64)
|
|
#include "efibind64.h"
|
|
#else
|
|
#include "efibind32.h"
|
|
#endif
|
|
|
|
#include "efidef.h"
|
|
#include "efidevp.h"
|
|
#include "efiprot.h"
|
|
#include "eficon.h"
|
|
#include "efiser.h"
|
|
#include "efi_nii.h"
|
|
#include "efipxebc.h"
|
|
#include "efinet.h"
|
|
#include "efiapi.h"
|
|
#include "efifs.h"
|
|
#include "efierr.h"
|
|
|
|
#endif
|