diff options
author | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-09-26 15:39:54 +0800 |
---|---|---|
committer | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-09-28 16:21:51 +0800 |
commit | 8ba839630e0ea5dceda12572ffc1db1cc4345851 (patch) | |
tree | 0387b78dcb3ad1b7a7ef6d1337bb06926e68285f /MdePkg | |
parent | 4a4297160fda8ff9646a7ae0cad7989a8aaeb619 (diff) | |
download | edk2-8ba839630e0ea5dceda12572ffc1db1cc4345851.tar.gz edk2-8ba839630e0ea5dceda12572ffc1db1cc4345851.tar.bz2 edk2-8ba839630e0ea5dceda12572ffc1db1cc4345851.zip |
MdePkg/HiiImage.h: Include GraphicsOutput.h
HiiImage.h uses EFI_GRAPHICS_OUTPUT_BLT_PIXEL which is defined in
GraphicsOutput.h. Include GraphicsOutput.h to avoid build failure
from consumer of HiiImage protocol.
Contributed-under: TianoCore Contribution Agreement 1.0
Reviewed-by: Liming Gao <liming.gao@intel.com>
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Diffstat (limited to 'MdePkg')
-rw-r--r-- | MdePkg/Include/Protocol/HiiImage.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MdePkg/Include/Protocol/HiiImage.h b/MdePkg/Include/Protocol/HiiImage.h index 3e1ea99cfc..1d42bfa71e 100644 --- a/MdePkg/Include/Protocol/HiiImage.h +++ b/MdePkg/Include/Protocol/HiiImage.h @@ -1,7 +1,7 @@ /** @file
The file provides services to access to images in the images database.
- Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -15,6 +15,8 @@ #ifndef __HII_IMAGE_H__
#define __HII_IMAGE_H__
+#include <Protocol/GraphicsOutput.h>
+
#define EFI_HII_IMAGE_PROTOCOL_GUID \
{ 0x31a6406a, 0x6bdf, 0x4e46, { 0xb2, 0xa2, 0xeb, 0xaa, 0x89, 0xc4, 0x9, 0x20 } }
|