summaryrefslogtreecommitdiffstats
path: root/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/FileBuffer.h
diff options
context:
space:
mode:
authorChen A Chen <chen.a.chen@intel.com>2016-09-29 14:41:41 +0800
committerRuiyu Ni <ruiyu.ni@intel.com>2016-10-09 10:27:47 +0800
commitc4e74e9b814cfb4b51cf832f3bb218cd2aba348b (patch)
tree5678464b0cfdab915eee86d2c8f55bc32a746321 /ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/FileBuffer.h
parentc20bd8e1e21772bff28a96d428db769e46033e6a (diff)
downloadedk2-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/Edit/FileBuffer.h')
-rw-r--r--ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/FileBuffer.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/FileBuffer.h b/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/FileBuffer.h
index 9d4a08d7a3..6b46e4a173 100644
--- a/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/FileBuffer.h
+++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/FileBuffer.h
@@ -25,7 +25,6 @@
@param EFI_OUT_OF_RESOURCES A memory allocation failed.
**/
EFI_STATUS
-EFIAPI
FileBufferInit (
VOID
);
@@ -36,7 +35,6 @@ FileBufferInit (
@retval EFI_SUCCESS The cleanup was successful.
**/
EFI_STATUS
-EFIAPI
FileBufferCleanup (
VOID
);
@@ -48,7 +46,6 @@ FileBufferCleanup (
@retval EFI_LOAD_ERROR There was an error finding what to write.
**/
EFI_STATUS
-EFIAPI
FileBufferRefresh (
VOID
);
@@ -68,7 +65,6 @@ FileBufferRefresh (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/
EFI_STATUS
-EFIAPI
FileBufferHandleInput (
IN CONST EFI_INPUT_KEY * Key
);
@@ -84,7 +80,6 @@ FileBufferHandleInput (
@retval EFI_SUCCESS The backup operation was successful.
**/
EFI_STATUS
-EFIAPI
FileBufferBackup (
VOID
);
@@ -95,7 +90,6 @@ FileBufferBackup (
@retval EFI_SUCCESS The operation was successful.
**/
EFI_STATUS
-EFIAPI
FileBufferRestorePosition (
VOID
);
@@ -110,7 +104,6 @@ FileBufferRestorePosition (
@retval EFI_INVALID_PARAMETER Str is not a valid filename.
**/
EFI_STATUS
-EFIAPI
FileBufferSetFileName (
IN CONST CHAR16 *Str
);
@@ -127,7 +120,6 @@ FileBufferSetFileName (
@retval EFI_INVALID_PARAMETER FileName is a directory.
**/
EFI_STATUS
-EFIAPI
FileBufferRead (
IN CONST CHAR16 *FileName,
IN CONST BOOLEAN Recover
@@ -143,7 +135,6 @@ FileBufferRead (
@retval EFI_OUT_OF_RESOURCES There were not enough resources to write the file.
**/
EFI_STATUS
-EFIAPI
FileBufferSave (
CONST CHAR16 *FileName
);
@@ -155,7 +146,6 @@ FileBufferSave (
@param[in] NewFilePosCol The column of file position ( start from 1 ).
**/
VOID
-EFIAPI
FileBufferMovePosition (
IN CONST UINTN NewFilePosRow,
IN CONST UINTN NewFilePosCol
@@ -172,7 +162,6 @@ FileBufferMovePosition (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/
EFI_STATUS
-EFIAPI
FileBufferCutLine (
OUT EFI_EDITOR_LINE **CutLine
);
@@ -184,7 +173,6 @@ FileBufferCutLine (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/
EFI_STATUS
-EFIAPI
FileBufferPasteLine (
VOID
);
@@ -199,7 +187,6 @@ FileBufferPasteLine (
@retval EFI_NOT_FOUND The string Str was not found.
**/
EFI_STATUS
-EFIAPI
FileBufferSearch (
IN CONST CHAR16 *Str,
IN CONST UINTN Offset
@@ -217,7 +204,6 @@ FileBufferSearch (
@retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/
EFI_STATUS
-EFIAPI
FileBufferReplace (
IN CONST CHAR16 *Replace,
IN CONST UINTN SearchLen
@@ -231,7 +217,6 @@ FileBufferReplace (
@param[in] Offset The column to start at.
**/
EFI_STATUS
-EFIAPI
FileBufferReplaceAll (
IN CHAR16 *SearchStr,
IN CHAR16 *ReplaceStr,
@@ -245,7 +230,6 @@ FileBufferReplaceAll (
@param[in] TextY The new y-coordinate.
**/
VOID
-EFIAPI
FileBufferAdjustMousePosition (
IN CONST INT32 TextX,
IN CONST INT32 TextY
@@ -255,7 +239,6 @@ FileBufferAdjustMousePosition (
Set the modified state to TRUE.
**/
VOID
-EFIAPI
FileBufferSetModified (
VOID
);