SA.c 813 B

1234567891011121314151617181920212223242526272829303132
  1. /** @file
  2. This is a simple shell application
  3. Copyright (c) 2008 - 2010, Intel Corporation. All rights reserved.<BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #include <Uefi.h>
  7. #include <Library/UefiApplicationEntryPoint.h>
  8. #include <Library/UefiLib.h>
  9. /**
  10. as the real entry point for the application.
  11. @param[in] ImageHandle The firmware allocated handle for the EFI image.
  12. @param[in] SystemTable A pointer to the EFI System Table.
  13. @retval EFI_SUCCESS The entry point is executed successfully.
  14. @retval other Some error occurs when executing this entry point.
  15. **/
  16. EFI_STATUS
  17. EFIAPI
  18. UefiMain (
  19. IN EFI_HANDLE ImageHandle,
  20. IN EFI_SYSTEM_TABLE *SystemTable
  21. )
  22. {
  23. Print (L"ShellExecute - Pass");
  24. return EFI_SUCCESS;
  25. }