source: bootcd/isolinux/syslinux-6.03/efi32/include/efi/efi.h @ e16e8f2

Last change on this file since e16e8f2 was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 911 bytes
Line 
1/*++
2
3Copyright (c) 1998  Intel Corporation
4
5Module Name:
6
7    efi.h
8
9Abstract:
10
11    Public EFI header files
12
13
14
15Revision History
16
17--*/
18
19//
20// Build flags on input
21//  EFI32
22//  EFI_DEBUG               - Enable debugging code
23//  EFI_NT_EMULATOR         - Building for running under NT
24//
25
26
27#ifndef _EFI_INCLUDE_
28#define _EFI_INCLUDE_
29
30#define EFI_FIRMWARE_VENDOR         L"INTEL"
31#define EFI_FIRMWARE_MAJOR_REVISION 12
32#define EFI_FIRMWARE_MINOR_REVISION 33
33#define EFI_FIRMWARE_REVISION ((EFI_FIRMWARE_MAJOR_REVISION <<16) | (EFI_FIRMWARE_MINOR_REVISION))
34
35#include "efibind.h"
36#include "efidef.h"
37#include "efidevp.h"
38#include "efipciio.h"
39#include "efiprot.h"
40#include "eficon.h"
41#include "efiser.h"
42#include "efi_nii.h"
43#include "efipxebc.h"
44#include "efinet.h"
45#include "efiapi.h"
46#include "efifs.h"
47#include "efierr.h"
48#include "efiui.h"
49#include "efiip.h"
50#include "efiudp.h"
51#include "efitcp.h"
52
53#endif
Note: See TracBrowser for help on using the repository browser.