X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=ShellPkg%2FApplication%2FShell%2FConsoleWrappers.h;h=e1860b411279832f8f8267b80157b4c3bfee79c9;hp=572113d39776ad41eff6e3a89ce4d03f6daa32f0;hb=ba0014b9f8ae1a593f03e744f26008214c2b06a8;hpb=733f138d84a25a5993bc32ffe016c364daba686c diff --git a/ShellPkg/Application/Shell/ConsoleWrappers.h b/ShellPkg/Application/Shell/ConsoleWrappers.h index 572113d397..e1860b4112 100644 --- a/ShellPkg/Application/Shell/ConsoleWrappers.h +++ b/ShellPkg/Application/Shell/ConsoleWrappers.h @@ -1,7 +1,8 @@ /** @file Function definitions for shell simple text in and out on top of file handles. - Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.
+ (C) Copyright 2013 Hewlett-Packard Development Company, L.P.
+ Copyright (c) 2010 - 2018, Intel Corporation. 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 @@ -16,7 +17,7 @@ #define _SHELL_CONSOLE_WRAPPERS_HEADER_ /** - Function to create a EFI_SIMPLE_TEXT_INPUT_PROTOCOL on top of a + Function to create a EFI_SIMPLE_TEXT_INPUT_PROTOCOL on top of a SHELL_FILE_HANDLE to support redirecting input from a file. @param[in] FileHandleToUse The pointer to the SHELL_FILE_HANDLE to use. @@ -26,14 +27,13 @@ @return A pointer to the allocated protocol structure; **/ EFI_SIMPLE_TEXT_INPUT_PROTOCOL* -EFIAPI CreateSimpleTextInOnFile( IN SHELL_FILE_HANDLE FileHandleToUse, IN EFI_HANDLE *HandleLocation ); /** - Function to close a EFI_SIMPLE_TEXT_INPUT_PROTOCOL on top of a + Function to close a EFI_SIMPLE_TEXT_INPUT_PROTOCOL on top of a SHELL_FILE_HANDLE to support redirecting input from a file. @param[in] SimpleTextIn The pointer to the SimpleTextIn to close. @@ -41,30 +41,30 @@ CreateSimpleTextInOnFile( @retval EFI_SUCCESS The object was closed. **/ EFI_STATUS -EFIAPI CloseSimpleTextInOnFile( IN EFI_SIMPLE_TEXT_INPUT_PROTOCOL *SimpleTextIn ); /** - Function to create a EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL on top of a + Function to create a EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL on top of a SHELL_FILE_HANDLE to support redirecting output from a file. - @param[in] FileHandleToUse The pointer to the SHELL_FILE_HANDLE to use. - @param[in] HandleLocation The pointer of a location to copy handle with protocol to. + @param[in] FileHandleToUse The pointer to the SHELL_FILE_HANDLE to use. + @param[in] HandleLocation The pointer of a location to copy handle with protocol to. + @param[in] OriginalProtocol The pointer to the original output protocol for pass thru of functions. @retval NULL There was insufficient memory available. @return A pointer to the allocated protocol structure; **/ EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL* -EFIAPI CreateSimpleTextOutOnFile( - IN SHELL_FILE_HANDLE FileHandleToUse, - IN EFI_HANDLE *HandleLocation + IN SHELL_FILE_HANDLE FileHandleToUse, + IN EFI_HANDLE *HandleLocation, + IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *OriginalProtocol ); /** - Function to close a EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL on top of a + Function to close a EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL on top of a SHELL_FILE_HANDLE to support redirecting output from a file. @param[in] SimpleTextOut The pointer to the SimpleTextOUT to close. @@ -72,7 +72,6 @@ CreateSimpleTextOutOnFile( @retval EFI_SUCCESS The object was closed. **/ EFI_STATUS -EFIAPI CloseSimpleTextOutOnFile( IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *SimpleTextOut );