diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-07-08 13:29:42 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-07-08 13:29:42 +0000 |
commit | 5f597758e20f046a7a76e728370b99308cf2c8a0 (patch) | |
tree | 749e4d98131de9bc655860cf2a715d8b9cc75703 /MdeModulePkg/Include/Protocol/OEMBadging.h | |
parent | 78c2ffb5a7172b9c5fbef15b5edc7aae3de5d4f2 (diff) | |
download | edk2-platforms-5f597758e20f046a7a76e728370b99308cf2c8a0.tar.xz |
Code scrube for MdeModule Definitions.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5428 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Include/Protocol/OEMBadging.h')
-rw-r--r-- | MdeModulePkg/Include/Protocol/OEMBadging.h | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/MdeModulePkg/Include/Protocol/OEMBadging.h b/MdeModulePkg/Include/Protocol/OEMBadging.h index 3154c1465a..0d701a8423 100644 --- a/MdeModulePkg/Include/Protocol/OEMBadging.h +++ b/MdeModulePkg/Include/Protocol/OEMBadging.h @@ -1,5 +1,6 @@ /** @file
- EFI OEM Badging Protocol definition header file
+ EFI OEM Badging Protocol defines the interface to get the OEM badging
+ image with the dispaly attribute. This protocol can be produced based on OEM images.
Copyright (c) 2006 - 2008, Intel Corporation. <BR>
All rights reserved. This program and the accompanying materials
@@ -45,7 +46,23 @@ typedef enum { EfiBadgingDisplayAttributeCustomized
} EFI_BADGING_DISPLAY_ATTRIBUTE;
+/**
+ Load an OEM image and return its data as well as attributes.
+
+ @param This Pointer to this protocol instance.
+ @param Instance The visiable image instance is founded and returned from the input instance.
+ @param Format Format of the image such as BMP,JPEG,etc.
+ @param ImageData Image data returned.
+ @param ImageSize Size of the image returned.
+ @param Attribute Display attributes of the image returned.
+ @param CoordinateX X coordinate of the image.
+ @param CoordinateY Y coordinate of the image.
+
+ @retval EFI_SUCCESS Image has been fetched successfully.
+ @retval EFI_NOT_FOUND The specified image could not be found.
+
+**/
typedef
EFI_STATUS
(EFIAPI *EFI_BADGING_GET_IMAGE) (
|