1e13416bb9
Sponsoered by: Netflix
66 lines
1.5 KiB
C
66 lines
1.5 KiB
C
/* $FreeBSD$ */
|
|
/*++
|
|
|
|
Copyright (c) 1999 - 2002 Intel Corporation. All rights reserved
|
|
This software and associated documentation (if any) is furnished
|
|
under a license and may only be used or copied in accordance
|
|
with the terms of the license. Except as permitted by such
|
|
license, no part of this software or documentation may be
|
|
reproduced, stored in a retrieval system, or transmitted in any
|
|
form or by any means without the express written consent of
|
|
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 14
|
|
#define EFI_FIRMWARE_MINOR_REVISION 62
|
|
#define EFI_FIRMWARE_REVISION ((EFI_FIRMWARE_MAJOR_REVISION <<16) | (EFI_FIRMWARE_MINOR_REVISION))
|
|
|
|
#include "efibind.h"
|
|
#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"
|
|
#include "efigop.h"
|
|
|
|
/*
|
|
* FreeBSD UUID
|
|
*/
|
|
#define FREEBSD_BOOT_VAR_GUID \
|
|
{ 0xCFEE69AD, 0xA0DE, 0x47A9, {0x93, 0xA8, 0xF6, 0x31, 0x06, 0xF8, 0xAE, 0x99} }
|
|
#define UEFI_BOOT_VAR_GUID \
|
|
{ 0x8be4df61, 0x93ca, 0x11d2, {0xaa, 0x0d, 0x00, 0xe0, 0x98, 0x03, 0x2b, 0x8c} }
|
|
|
|
#endif
|