ShellPkg/UefiShellCommandLib: 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:
Chen A Chen 2016-09-29 14:53:47 +08:00 committed by Ruiyu Ni
parent 8fc1d11c71
commit 398faa1c1d
2 changed files with 0 additions and 9 deletions

View File

@ -1333,7 +1333,6 @@ DEV_PATH_CONSIST_MAPPING_TABLE DevPathConsistMappingTable[] = {
@retval FALSE The node is not Hi. @retval FALSE The node is not Hi.
**/ **/
BOOLEAN BOOLEAN
EFIAPI
IsHIDevicePathNode ( IsHIDevicePathNode (
IN EFI_DEVICE_PATH_PROTOCOL *DevicePathNode IN EFI_DEVICE_PATH_PROTOCOL *DevicePathNode
) )
@ -1370,7 +1369,6 @@ IsHIDevicePathNode (
@return the device path portion that is Hi. @return the device path portion that is Hi.
**/ **/
EFI_DEVICE_PATH_PROTOCOL * EFI_DEVICE_PATH_PROTOCOL *
EFIAPI
GetHIDevicePath ( GetHIDevicePath (
IN EFI_DEVICE_PATH_PROTOCOL *DevicePath IN EFI_DEVICE_PATH_PROTOCOL *DevicePath
) )
@ -1425,7 +1423,6 @@ GetHIDevicePath (
@return EFI_SUCCESS Always returns success. @return EFI_SUCCESS Always returns success.
**/ **/
EFI_STATUS EFI_STATUS
EFIAPI
GetDeviceConsistMappingInfo ( GetDeviceConsistMappingInfo (
IN DEVICE_CONSIST_MAPPING_INFO *MappingItem, IN DEVICE_CONSIST_MAPPING_INFO *MappingItem,
IN EFI_DEVICE_PATH_PROTOCOL *DevicePath IN EFI_DEVICE_PATH_PROTOCOL *DevicePath

View File

@ -128,7 +128,6 @@ ShellCommandLibConstructor (
@param[in] List The list to free. @param[in] List The list to free.
**/ **/
VOID VOID
EFIAPI
FreeFileHandleList ( FreeFileHandleList (
IN BUFFER_LIST *List IN BUFFER_LIST *List
) )
@ -244,7 +243,6 @@ ShellCommandLibDestructor (
@retval NULL no dynamic command protocol instance found for name @retval NULL no dynamic command protocol instance found for name
**/ **/
CONST EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL * CONST EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL *
EFIAPI
ShellCommandFindDynamicCommand ( ShellCommandFindDynamicCommand (
IN CONST CHAR16 *CommandString IN CONST CHAR16 *CommandString
) )
@ -293,7 +291,6 @@ ShellCommandFindDynamicCommand (
@param[in] CommandString The command string to check for on the list. @param[in] CommandString The command string to check for on the list.
**/ **/
BOOLEAN BOOLEAN
EFIAPI
ShellCommandDynamicCommandExists ( ShellCommandDynamicCommandExists (
IN CONST CHAR16 *CommandString IN CONST CHAR16 *CommandString
) )
@ -307,7 +304,6 @@ ShellCommandDynamicCommandExists (
@param[in] CommandString The command string to check for on the list. @param[in] CommandString The command string to check for on the list.
**/ **/
BOOLEAN BOOLEAN
EFIAPI
ShellCommandIsCommandOnInternalList( ShellCommandIsCommandOnInternalList(
IN CONST CHAR16 *CommandString IN CONST CHAR16 *CommandString
) )
@ -365,7 +361,6 @@ ShellCommandIsCommandOnList(
@return String of help text. Caller required to free. @return String of help text. Caller required to free.
**/ **/
CHAR16* CHAR16*
EFIAPI
ShellCommandGetDynamicCommandHelp( ShellCommandGetDynamicCommandHelp(
IN CONST CHAR16 *CommandString IN CONST CHAR16 *CommandString
) )
@ -392,7 +387,6 @@ ShellCommandGetDynamicCommandHelp(
@return String of help text. Caller reuiqred to free. @return String of help text. Caller reuiqred to free.
**/ **/
CHAR16* CHAR16*
EFIAPI
ShellCommandGetInternalCommandHelp( ShellCommandGetInternalCommandHelp(
IN CONST CHAR16 *CommandString IN CONST CHAR16 *CommandString
) )