mirror of https://github.com/acidanthera/audk.git
Fix missing include file which break doxygen parsing.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5103 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
ec0ccddace
commit
0b3cac32f3
|
@ -18,6 +18,8 @@
|
|||
#ifndef __PI_BOOT_MODE_H__
|
||||
#define __PI_BOOT_MODE_H__
|
||||
|
||||
#include <ProcessorBind.h>
|
||||
|
||||
typedef UINT32 EFI_BOOT_MODE;
|
||||
|
||||
//
|
||||
|
|
|
@ -15,9 +15,12 @@
|
|||
|
||||
**/
|
||||
|
||||
|
||||
#ifndef __PI_FIRMWARE_FILE_H__
|
||||
#define __PI_FIRMWARE_FILE_H__
|
||||
|
||||
#include <ProcessorBind.h>
|
||||
|
||||
#pragma pack(1)
|
||||
//
|
||||
// Used to verify the integrity of the file.
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
#ifndef __PI_FIRMWAREVOLUME_H__
|
||||
#define __PI_FIRMWAREVOLUME_H__
|
||||
|
||||
#include <ProcessorBind.h>
|
||||
|
||||
//
|
||||
// EFI_FV_FILE_ATTRIBUTES
|
||||
//
|
||||
|
@ -90,9 +92,9 @@ typedef struct {
|
|||
UINT32 Length;
|
||||
} EFI_FV_BLOCK_MAP_ENTRY;
|
||||
|
||||
//
|
||||
// Describes the features and layout of the firmware volume.
|
||||
//
|
||||
///
|
||||
/// Describes the features and layout of the firmware volume.
|
||||
///
|
||||
typedef struct {
|
||||
UINT8 ZeroVector[16];
|
||||
EFI_GUID FileSystemGuid;
|
||||
|
|
|
@ -18,6 +18,11 @@
|
|||
#ifndef __PI_HOB_H__
|
||||
#define __PI_HOB_H__
|
||||
|
||||
#include <ProcessorBind.h>
|
||||
#include <Pi/PiBootMode.h>
|
||||
#include <Uefi/UefiBaseType.h>
|
||||
#include <Uefi/UefiMultiPhase.h>
|
||||
|
||||
//
|
||||
// HobType of EFI_HOB_GENERIC_HEADER.
|
||||
//
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
#ifndef __UEFI_MULTIPHASE_H__
|
||||
#define __UEFI_MULTIPHASE_H__
|
||||
|
||||
#include <ProcessorBind.h>
|
||||
|
||||
//
|
||||
// Enumeration of memory types introduced in UEFI.
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue