diff options
author | Chen A Chen <chen.a.chen@intel.com> | 2016-09-29 14:41:41 +0800 |
---|---|---|
committer | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-10-09 10:27:47 +0800 |
commit | c4e74e9b814cfb4b51cf832f3bb218cd2aba348b (patch) | |
tree | 5678464b0cfdab915eee86d2c8f55bc32a746321 /ShellPkg/Library/UefiShellDebug1CommandsLib/EditInputBar.c | |
parent | c20bd8e1e21772bff28a96d428db769e46033e6a (diff) | |
download | edk2-c4e74e9b814cfb4b51cf832f3bb218cd2aba348b.tar.gz edk2-c4e74e9b814cfb4b51cf832f3bb218cd2aba348b.tar.bz2 edk2-c4e74e9b814cfb4b51cf832f3bb218cd2aba348b.zip |
ShellPkg/UefiShellDebug1CommandsLib: Remove unnecessary EFIAPI
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Chen A Chen <chen.a.chen@intel.com>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
Reviewed-by: Ruiyu Ni <Ruiyu.ni@intel.com>
Diffstat (limited to 'ShellPkg/Library/UefiShellDebug1CommandsLib/EditInputBar.c')
-rw-r--r-- | ShellPkg/Library/UefiShellDebug1CommandsLib/EditInputBar.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/EditInputBar.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/EditInputBar.c index 5c43ffcd9d..26f70d719a 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/EditInputBar.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/EditInputBar.c @@ -23,7 +23,6 @@ UINTN StringSize; // Size of mReturnString space size. Initialize the input bar.
**/
VOID
-EFIAPI
InputBarInit (
VOID
)
@@ -37,7 +36,6 @@ InputBarInit ( Cleanup function for input bar.
**/
VOID
-EFIAPI
InputBarCleanup (
VOID
)
@@ -59,7 +57,6 @@ InputBarCleanup ( @param[in] LastRow The last printable row.
**/
VOID
-EFIAPI
InputBarPrintInput (
IN UINTN LastColumn,
IN UINTN LastRow
@@ -121,7 +118,6 @@ typedef union { @retval EFI_SUCCESS The operation was successful.
**/
EFI_STATUS
-EFIAPI
InputBarRefresh (
UINTN LastRow,
UINTN LastColumn
@@ -261,7 +257,6 @@ InputBarRefresh ( @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/
EFI_STATUS
-EFIAPI
InputBarSetPrompt (
IN CONST CHAR16 *Str
)
@@ -288,7 +283,6 @@ InputBarSetPrompt ( @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/
EFI_STATUS
-EFIAPI
InputBarSetStringSize (
UINTN Size
)
@@ -314,7 +308,6 @@ InputBarSetStringSize ( @return The string that was input.
**/
CONST CHAR16*
-EFIAPI
InputBarGetString (
VOID
)
|