summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Library/GraphicsLib.h
diff options
context:
space:
mode:
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2008-11-24 05:49:59 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2008-11-24 05:49:59 +0000
commit519f076a478a7da9ff4b9d5327a993b1fc2968e8 (patch)
tree392650a225fb29f7221927e4ead4ce5c189c8f5e /MdePkg/Include/Library/GraphicsLib.h
parent978baf50be487ad7d74f8b7d34772517c2219526 (diff)
downloadedk2-519f076a478a7da9ff4b9d5327a993b1fc2968e8.zip
edk2-519f076a478a7da9ff4b9d5327a993b1fc2968e8.tar.gz
edk2-519f076a478a7da9ff4b9d5327a993b1fc2968e8.tar.bz2
1.retried graphics library class from MdePkg
2.retried graphics library instance from MdeModulePkg 3.Move EnableQuietBoot(), DisableQuietBoot() and LockKeyboards() into GenericBdsLib git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6691 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Library/GraphicsLib.h')
-rw-r--r--MdePkg/Include/Library/GraphicsLib.h90
1 files changed, 0 insertions, 90 deletions
diff --git a/MdePkg/Include/Library/GraphicsLib.h b/MdePkg/Include/Library/GraphicsLib.h
deleted file mode 100644
index 3f31d88..0000000
--- a/MdePkg/Include/Library/GraphicsLib.h
+++ /dev/null
@@ -1,90 +0,0 @@
-/** @file
- Library supports displaying graphical splash screen,
- locking of keyboard input and printing character on
- screen.
-
- 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
- http://opensource.org/licenses/bsd-license.php
-
- THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
- WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-
-**/
-
-#ifndef __EFI_GRAPHICS_LIB_H__
-#define __EFI_GRAPHICS_LIB_H__
-
-
-/**
- Use Console Control to turn off UGA based Simple Text Out consoles from going
- to the UGA device. Put up LogoFile on every UGA device that is a console
-
- @param[in] LogoFile File name of logo to display on the center of the screen.
-
- @retval EFI_SUCCESS ConsoleControl has been flipped to graphics and logo displayed.
- @retval EFI_UNSUPPORTED Logo not found
-
-**/
-EFI_STATUS
-EFIAPI
-EnableQuietBoot (
- IN EFI_GUID *LogoFile
- );
-
-/**
- Use Console Control to turn off GOP/UGA based Simple Text Out consoles from going
- to the UGA device. Put up LogoFile on every UGA device that is a console
-
- @param LogoFile File name of logo to display on the center of the screen.
- @param ImageHandle The driver image handle of the caller. The parameter is used to
- optimize the loading of the logo file so that the FV from which
- the driver image is loaded will be tried first.
-
- @retval EFI_SUCCESS ConsoleControl has been flipped to graphics and logo displayed.
- @retval EFI_UNSUPPORTED Logo not found
-
-**/
-EFI_STATUS
-EFIAPI
-EnableQuietBootEx (
- IN EFI_GUID *LogoFile,
- IN EFI_HANDLE ImageHandle
- );
-
-
-/**
- Use Console Control to turn on UGA based Simple Text Out consoles. The UGA
- Simple Text Out screens will now be synced up with all non UGA output devices
-
- @retval EFI_SUCCESS UGA devices are back in text mode and synced up.
-
-**/
-EFI_STATUS
-EFIAPI
-DisableQuietBoot (
- VOID
- );
-
-
-/**
- Use Console Control Protocol to lock the Console In Spliter virtual handle.
- This is the ConInHandle and ConIn handle in the EFI system table. All key
- presses will be ignored until the Password is typed in. The only way to
- disable the password is to type it in to a ConIn device.
-
- @param[in] Password Password used to lock ConIn device.
-
- @retval EFI_SUCCESS lock the Console In Spliter virtual handle successfully.
- @retval EFI_UNSUPPORTED Password not found
-
-**/
-EFI_STATUS
-EFIAPI
-LockKeyboards (
- IN CHAR16 *Password
- );
-
-#endif