X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=ShellPkg%2FLibrary%2FUefiShellDebug1CommandsLib%2FEditInputBar.h;h=e7e6c786804578a12561afbacbef6d30f8b1d29d;hp=c8557a83f1a937c412e6ac37609220034be5dc5a;hb=5563281fa2b31093a1cbd415553b9264c5136e89;hpb=2442e62af75a0c5087fce3fb2040e26a485b0d31;ds=sidebyside diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/EditInputBar.h b/ShellPkg/Library/UefiShellDebug1CommandsLib/EditInputBar.h index c8557a83f1..e7e6c78680 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/EditInputBar.h +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/EditInputBar.h @@ -1,7 +1,7 @@ /** @file Declares imputbar interface functions. - Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved.
+ Copyright (c) 2005 - 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 @@ -17,18 +17,18 @@ /** Initialize the input bar. + + @param[in] TextInEx Pointer to SimpleTextInEx instance in System Table. **/ VOID -EFIAPI InputBarInit ( - VOID + IN EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL *TextInEx ); /** Cleanup function for input bar. **/ VOID -EFIAPI InputBarCleanup ( VOID ); @@ -42,7 +42,6 @@ InputBarCleanup ( @retval EFI_SUCCESS The operation was successful. **/ EFI_STATUS -EFIAPI InputBarRefresh ( UINTN LastRow, UINTN LastColumn @@ -57,7 +56,6 @@ InputBarRefresh ( @retval EFI_OUT_OF_RESOURCES A memory allocation failed. **/ EFI_STATUS -EFIAPI InputBarSetPrompt ( IN CONST CHAR16 *Str ); @@ -71,7 +69,6 @@ InputBarSetPrompt ( @retval EFI_OUT_OF_RESOURCES A memory allocation failed. **/ EFI_STATUS -EFIAPI InputBarSetStringSize ( UINTN Size ); @@ -83,7 +80,6 @@ InputBarSetStringSize ( @return The string that was input. **/ CONST CHAR16* -EFIAPI InputBarGetString ( VOID );