From bdf0da37c92fc544100f8a809fcd8ceee67c045d Mon Sep 17 00:00:00 2001 From: Dandan Bi Date: Tue, 22 Mar 2016 10:38:01 +0800 Subject: MdeModulePkg/BootMaintManagerUiLib: Declare EFIAPI for ChooseFile handler The BootMaintenanceManagerUiLib use ChooseFile() from FileExplorerLib to select files. And the third parameter in ChooseFile() is CHOOSE_HANDLER, per the definition of CHOOSE_HANDLER, it must use EFIAPI as the calling convention. But the calling convention was not specified for following handlers: CreateBootOptionFromFile, CreateDriverOptionFromFile, BootFromFile. Now specifies the calling convention for those functions. Cc: Liming Gao Cc: Eric Dong Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Dandan Bi Reviewed-by: Eric Dong Reviewed-by: Gary Lin --- MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootOption.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootOption.c') diff --git a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootOption.c b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootOption.c index 0bd3170872..7a014c911b 100644 --- a/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootOption.c +++ b/MdeModulePkg/Library/BootMaintenanceManagerUiLib/BootOption.c @@ -857,6 +857,7 @@ GetDriverOrder ( @retval FALSE Not exit caller function. **/ BOOLEAN +EFIAPI BootFromFile ( IN EFI_DEVICE_PATH_PROTOCOL *FilePath ) @@ -929,6 +930,7 @@ ReSendForm( @retval FALSE Not exit caller function. **/ BOOLEAN +EFIAPI CreateBootOptionFromFile ( IN EFI_DEVICE_PATH_PROTOCOL *FilePath ) @@ -946,6 +948,7 @@ CreateBootOptionFromFile ( **/ BOOLEAN +EFIAPI CreateDriverOptionFromFile ( IN EFI_DEVICE_PATH_PROTOCOL *FilePath ) -- cgit v1.2.3