1 /** @file 2 3 Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR> 4 5 This program and the accompanying materials are licensed and made available under 7 the terms and conditions of the BSD License that accompanies this distribution. 9 The full text of the license may be found at 11 http://opensource.org/licenses/bsd-license.php. 13 15 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 17 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 19 21 23 24 25 **/ 26 27 /** 28 The user Entry Point for Application. The user code starts with this function 29 as the real entry point for the image goes into a library that calls this 30 function. 31 32 @param[in] ImageHandle The firmware allocated handle for the EFI image. 33 @param[in] SystemTable A pointer to the EFI System Table. 34 35 @retval EFI_SUCCESS The entry point is executed successfully. 36 @retval other Some error occurs when executing this entry point. 37 38 **/ 39 EFI_STATUS 40 EFIAPI 41 InitializeUserInterface ( 42 IN EFI_HANDLE ImageHandle, 43 IN EFI_SYSTEM_TABLE *SystemTable 44 ) 45 { 46 return EFI_SUCCESS; 47 } 48