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@5105 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
0c7f62f82d
commit
3f748e529c
|
@ -15,6 +15,7 @@
|
|||
#ifndef __PCD_PPI_H__
|
||||
#define __PCD_PPI_H__
|
||||
|
||||
#include <PiPei.h>
|
||||
|
||||
#define PCD_PPI_GUID \
|
||||
{ 0x6e81c58, 0x4ad7, 0x44bc, { 0x83, 0x90, 0xf1, 0x2, 0x65, 0xf7, 0x24, 0x80 } }
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
#ifndef __DEBUG_SUPPORT_H__
|
||||
#define __DEBUG_SUPPORT_H__
|
||||
|
||||
#include <ProcessorBind.h>
|
||||
#include <IndustryStandard/PeImage.h>
|
||||
|
||||
typedef struct _EFI_DEBUG_SUPPORT_PROTOCOL EFI_DEBUG_SUPPORT_PROTOCOL;
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
|
||||
**/
|
||||
|
||||
#include <PiDxe.h>
|
||||
|
||||
#ifndef __EDID_OVERRIDE_H__
|
||||
#define __EDID_OVERRIDE_H__
|
||||
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
#ifndef __GRAPHICS_OUTPUT_H__
|
||||
#define __GRAPHICS_OUTPUT_H__
|
||||
|
||||
#include <PiDxe.h>
|
||||
|
||||
#define EFI_GRAPHICS_OUTPUT_PROTOCOL_GUID \
|
||||
{ \
|
||||
0x9042a9de, 0x23dc, 0x4a38, {0x96, 0xfb, 0x7a, 0xde, 0xd0, 0x80, 0x51, 0x6a } \
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
#ifndef __PCD_H__
|
||||
#define __PCD_H__
|
||||
|
||||
#include <PiDxe.h>
|
||||
|
||||
extern EFI_GUID gPcdProtocolGuid;
|
||||
|
||||
#define PCD_PROTOCOL_GUID \
|
||||
|
|
|
@ -31,6 +31,8 @@
|
|||
#ifndef __ARCH_PROTOCOL_SECURITY_H__
|
||||
#define __ARCH_PROTOCOL_SECURITY_H__
|
||||
|
||||
#include <PiDxe.h>
|
||||
|
||||
//
|
||||
// Global ID for the Security Code Architectural Protocol
|
||||
//
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
#ifndef __SIMPLE_TEXT_IN_PROTOCOL_H__
|
||||
#define __SIMPLE_TEXT_IN_PROTOCOL_H__
|
||||
|
||||
#include <ProcessorBind.h>
|
||||
|
||||
#define EFI_SIMPLE_TEXT_INPUT_PROTOCOL_GUID \
|
||||
{ \
|
||||
0x387477c1, 0x69c7, 0x11d2, {0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b } \
|
||||
|
|
|
@ -18,6 +18,9 @@
|
|||
#ifndef __SIMPLE_TEXT_IN_EX_H__
|
||||
#define __SIMPLE_TEXT_IN_EX_H__
|
||||
|
||||
#include <ProcessorBind.h>
|
||||
#include <Pi/PiMultiPhase.h>
|
||||
|
||||
#define EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL_GUID \
|
||||
{0xdd9e7534, 0x7762, 0x4698, { 0x8c, 0x14, 0xf5, 0x85, 0x17, 0xa6, 0x25, 0xaa } }
|
||||
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
#ifndef __SIMPLE_TEXT_OUT_H__
|
||||
#define __SIMPLE_TEXT_OUT_H__
|
||||
|
||||
#include <PiDxe.h>
|
||||
|
||||
#define EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL_GUID \
|
||||
{ \
|
||||
0x387477c2, 0x69c7, 0x11d2, {0x8e, 0x39, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b } \
|
||||
|
|
|
@ -17,6 +17,9 @@
|
|||
#ifndef __UGA_DRAW_H__
|
||||
#define __UGA_DRAW_H__
|
||||
|
||||
#include <PiDxe.h>
|
||||
|
||||
|
||||
#define EFI_UGA_DRAW_PROTOCOL_GUID \
|
||||
{ \
|
||||
0x982c298b, 0xf4fa, 0x41cb, {0xb8, 0x38, 0x77, 0xaa, 0x68, 0x8f, 0xb8, 0x39 } \
|
||||
|
|
|
@ -22,6 +22,9 @@
|
|||
// Basical data type definitions introduced in UEFI.
|
||||
//
|
||||
typedef GUID EFI_GUID;
|
||||
///
|
||||
/// Function return status for EFI API
|
||||
///
|
||||
typedef RETURN_STATUS EFI_STATUS;
|
||||
typedef VOID *EFI_HANDLE;
|
||||
|
||||
|
|
Loading…
Reference in New Issue