summaryrefslogtreecommitdiffstats
path: root/MdePkg/Include/Library
diff options
context:
space:
mode:
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2008-07-08 08:15:20 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2008-07-08 08:15:20 +0000
commit2f50ef835c97e69747719a406cd5acb3fe93ca53 (patch)
treef39811a779499d489a91a14d445920ebd2a5657a /MdePkg/Include/Library
parent66c69dea0dfdf1e7138b97f1fb74f529813b6553 (diff)
downloadedk2-2f50ef835c97e69747719a406cd5acb3fe93ca53.tar.gz
edk2-2f50ef835c97e69747719a406cd5acb3fe93ca53.tar.bz2
edk2-2f50ef835c97e69747719a406cd5acb3fe93ca53.zip
1. Enabled UGA Draw consuming in GraphicsLib of MdemodulePkg.
2. ECC clean. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5422 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Library')
-rw-r--r--MdePkg/Include/Library/GraphicsLib.h17
1 files changed, 12 insertions, 5 deletions
diff --git a/MdePkg/Include/Library/GraphicsLib.h b/MdePkg/Include/Library/GraphicsLib.h
index c9fa564a8c..0f137d4ac0 100644
--- a/MdePkg/Include/Library/GraphicsLib.h
+++ b/MdePkg/Include/Library/GraphicsLib.h
@@ -1,7 +1,7 @@
/** @file
Graphics Library
- Copyright (c) 2006 - 2007, Intel Corporation.<BR>
+ Copyright (c) 2006 - 2008, Intel Corporation.<BR>
All rights reserved. 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
@@ -36,6 +36,7 @@
**/
EFI_STATUS
+EFIAPI
GetGraphicsBitMapFromFV (
IN EFI_GUID *FileNameGuid,
OUT VOID **Image,
@@ -63,6 +64,7 @@ GetGraphicsBitMapFromFV (
**/
EFI_STATUS
+EFIAPI
GetGraphicsBitMapFromFVEx (
IN EFI_HANDLE ImageHandle,
IN EFI_GUID *FileNameGuid,
@@ -88,6 +90,7 @@ GetGraphicsBitMapFromFVEx (
UgaBltSize will contain the required size.
**/
EFI_STATUS
+EFIAPI
ConvertBmpToUgaBlt (
IN VOID *BmpImage,
IN UINTN BmpImageSize,
@@ -109,6 +112,7 @@ ConvertBmpToUgaBlt (
**/
EFI_STATUS
+EFIAPI
EnableQuietBoot (
IN EFI_GUID *LogoFile
);
@@ -127,6 +131,7 @@ EnableQuietBoot (
**/
EFI_STATUS
+EFIAPI
EnableQuietBootEx (
IN EFI_GUID *LogoFile,
IN EFI_HANDLE ImageHandle
@@ -141,6 +146,7 @@ EnableQuietBootEx (
**/
EFI_STATUS
+EFIAPI
DisableQuietBoot (
VOID
);
@@ -160,6 +166,7 @@ DisableQuietBoot (
**/
EFI_STATUS
+EFIAPI
LockKeyboards (
IN CHAR16 *Password
);
@@ -171,8 +178,8 @@ LockKeyboards (
@param[in] X Row to start printing at
@param[in] Y Column to start printing at
- @param[in] Foreground Foreground color
- @param[in] Background background color
+ @param[in] ForeGround Foreground color
+ @param[in] ForeGround background color
@param[in] Fmt Print format sting. See definition of Print
@param[in] ... Argumnet stream defined by Fmt string
@@ -184,8 +191,8 @@ EFIAPI
PrintXY (
IN UINTN X,
IN UINTN Y,
- IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Foreground, OPTIONAL
- IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *Background, OPTIONAL
+ IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *ForeGround, OPTIONAL
+ IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *ForeGround, OPTIONAL
IN CHAR16 *Fmt,
...
);