diff options
author | Chen A Chen <chen.a.chen@intel.com> | 2016-09-29 15:15:15 +0800 |
---|---|---|
committer | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-10-09 10:27:45 +0800 |
commit | c20bd8e1e21772bff28a96d428db769e46033e6a (patch) | |
tree | ac3cc654f4797256164436f4b3b7a40a38812339 /ShellPkg/Application/Shell/ShellParametersProtocol.h | |
parent | 4558491f8717c2ff8d1a3eeb1cd2af7322758612 (diff) | |
download | edk2-platforms-c20bd8e1e21772bff28a96d428db769e46033e6a.tar.xz |
ShellPkg/Application: 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/Application/Shell/ShellParametersProtocol.h')
-rw-r--r-- | ShellPkg/Application/Shell/ShellParametersProtocol.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ShellPkg/Application/Shell/ShellParametersProtocol.h b/ShellPkg/Application/Shell/ShellParametersProtocol.h index 926f36242c..61cabca2c2 100644 --- a/ShellPkg/Application/Shell/ShellParametersProtocol.h +++ b/ShellPkg/Application/Shell/ShellParametersProtocol.h @@ -43,7 +43,6 @@ typedef enum { @sa ParseCommandLineToArgs
**/
EFI_STATUS
-EFIAPI
CreatePopulateInstallShellParametersProtocol (
IN OUT EFI_SHELL_PARAMETERS_PROTOCOL **NewShellParameters,
IN OUT BOOLEAN *RootShellInstance
@@ -62,7 +61,6 @@ CreatePopulateInstallShellParametersProtocol ( @sa UninstallProtocolInterface
**/
EFI_STATUS
-EFIAPI
CleanUpShellParametersProtocol (
IN OUT EFI_SHELL_PARAMETERS_PROTOCOL *NewShellParameters
);
@@ -82,7 +80,6 @@ CleanUpShellParametersProtocol ( @retval EFI_OUT_OF_RESOURCES a memory allocation failed.
**/
EFI_STATUS
-EFIAPI
UpdateArgcArgv(
IN OUT EFI_SHELL_PARAMETERS_PROTOCOL *ShellParameters,
IN CONST CHAR16 *NewCommandLine,
@@ -101,7 +98,6 @@ UpdateArgcArgv( @param[in] OldArgc pointer to old number of items in Argv list
**/
VOID
-EFIAPI
RestoreArgcArgv(
IN OUT EFI_SHELL_PARAMETERS_PROTOCOL *ShellParameters,
IN CHAR16 ***OldArgv,
@@ -135,7 +131,6 @@ typedef struct { @retval EFI_OUT_OF_RESOURCES A memory allocation failed.
**/
EFI_STATUS
-EFIAPI
UpdateStdInStdOutStdErr(
IN OUT EFI_SHELL_PARAMETERS_PROTOCOL *ShellParameters,
IN CHAR16 *NewCommandLine,
@@ -156,7 +151,6 @@ UpdateStdInStdOutStdErr( @param[in] SystemTableInfo Pointer to old system table information.
**/
EFI_STATUS
-EFIAPI
RestoreStdInStdOutStdErr (
IN OUT EFI_SHELL_PARAMETERS_PROTOCOL *ShellParameters,
IN SHELL_FILE_HANDLE *OldStdIn,
@@ -182,7 +176,6 @@ RestoreStdInStdOutStdErr ( @return EFI_OUT_OF_RESOURCES a memory allocation failed.
**/
EFI_STATUS
-EFIAPI
ParseCommandLineToArgs(
IN CONST CHAR16 *CommandLine,
IN BOOLEAN StripQuotation,
@@ -211,7 +204,6 @@ ParseCommandLineToArgs( @return EFI_NOT_FOUND A closing " could not be found on the specified string
**/
EFI_STATUS
-EFIAPI
GetNextParameter(
IN OUT CHAR16 **Walker,
IN OUT CHAR16 **TempParameter,
|