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>
This commit is contained in:
@ -151,7 +151,6 @@ extern SHELL_INFO ShellInfoObject;
|
||||
@return some other error occurred
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
ProcessCommandLineToFinal(
|
||||
IN OUT CHAR16 **CmdLine
|
||||
);
|
||||
@ -162,7 +161,6 @@ ProcessCommandLineToFinal(
|
||||
@param[in] ErrorCode the error code to put into lasterror
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
SetLastError(
|
||||
IN CONST SHELL_STATUS ErrorCode
|
||||
);
|
||||
@ -173,7 +171,6 @@ SetLastError(
|
||||
@retval EFI_SUCCESS all init commands were run successfully.
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
SetBuiltInAlias(
|
||||
VOID
|
||||
);
|
||||
@ -193,7 +190,6 @@ SetBuiltInAlias(
|
||||
@sa HandleProtocol
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
GetDevicePathsForImageAndFile (
|
||||
IN OUT EFI_DEVICE_PATH_PROTOCOL **DevPath,
|
||||
IN OUT EFI_DEVICE_PATH_PROTOCOL **FilePath
|
||||
@ -227,7 +223,6 @@ GetDevicePathsForImageAndFile (
|
||||
@retval EFI_SUCCESS the variable is initialized.
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
ProcessCommandLine(
|
||||
VOID
|
||||
);
|
||||
@ -243,7 +238,6 @@ ProcessCommandLine(
|
||||
@retval EFI_SUCCESS The variable is initialized.
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
DoStartupScript(
|
||||
IN EFI_DEVICE_PATH_PROTOCOL *ImagePath,
|
||||
IN EFI_DEVICE_PATH_PROTOCOL *FilePath
|
||||
@ -258,7 +252,6 @@ DoStartupScript(
|
||||
@retval RETURN_ABORTED
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
DoShellPrompt (
|
||||
VOID
|
||||
);
|
||||
@ -270,7 +263,6 @@ DoShellPrompt (
|
||||
@param Buffer Something to pass to FreePool when the shell is exiting.
|
||||
**/
|
||||
VOID*
|
||||
EFIAPI
|
||||
AddBufferToFreeList(
|
||||
VOID *Buffer
|
||||
);
|
||||
@ -281,7 +273,6 @@ AddBufferToFreeList(
|
||||
@param Buffer[in] The line buffer to add.
|
||||
**/
|
||||
VOID
|
||||
EFIAPI
|
||||
AddLineToCommandHistory(
|
||||
IN CONST CHAR16 *Buffer
|
||||
);
|
||||
@ -297,7 +288,6 @@ AddLineToCommandHistory(
|
||||
@retval EFI_ABORTED the command's operation was aborted
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
RunCommand(
|
||||
IN CONST CHAR16 *CmdLine
|
||||
);
|
||||
@ -315,7 +305,6 @@ RunCommand(
|
||||
@retval EFI_ABORTED The command's operation was aborted.
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
RunShellCommand(
|
||||
IN CONST CHAR16 *CmdLine,
|
||||
OUT EFI_STATUS *CommandStatus
|
||||
@ -331,7 +320,6 @@ RunShellCommand(
|
||||
@retval FALSE CommandName could not be a valid command name
|
||||
**/
|
||||
BOOLEAN
|
||||
EFIAPI
|
||||
IsValidCommandName(
|
||||
IN CONST CHAR16 *CommandName
|
||||
);
|
||||
@ -345,7 +333,6 @@ IsValidCommandName(
|
||||
@retval EFI_SUCCESS the script completed successfully
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
RunScriptFileHandle (
|
||||
IN SHELL_FILE_HANDLE Handle,
|
||||
IN CONST CHAR16 *Name
|
||||
@ -362,7 +349,6 @@ RunScriptFileHandle (
|
||||
@retval EFI_SUCCESS the script completed successfully
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
RunScriptFile (
|
||||
IN CONST CHAR16 *ScriptPath,
|
||||
IN SHELL_FILE_HANDLE Handle OPTIONAL,
|
||||
@ -381,7 +367,6 @@ RunScriptFile (
|
||||
@retval CHAR_NULL no instance of any character in CharacterList was found in String
|
||||
**/
|
||||
CONST CHAR16*
|
||||
EFIAPI
|
||||
FindFirstCharacter(
|
||||
IN CONST CHAR16 *String,
|
||||
IN CONST CHAR16 *CharacterList,
|
||||
@ -394,7 +379,6 @@ FindFirstCharacter(
|
||||
@param[in] String pointer to the string to trim them off.
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
TrimSpaces(
|
||||
IN CHAR16 **String
|
||||
);
|
||||
|
Reference in New Issue
Block a user