Last change
on this file since 106901 was 99404, checked in by vboxsync, 2 years ago |
Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
781 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | This is a simple shell application
|
---|
3 |
|
---|
4 | Copyright (c) 2008 - 2010, Intel Corporation. All rights reserved.<BR>
|
---|
5 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 |
|
---|
7 | **/
|
---|
8 |
|
---|
9 | #include <Uefi.h>
|
---|
10 | #include <Library/UefiApplicationEntryPoint.h>
|
---|
11 | #include <Library/UefiLib.h>
|
---|
12 |
|
---|
13 | /**
|
---|
14 | as the real entry point for the application.
|
---|
15 |
|
---|
16 | @param[in] ImageHandle The firmware allocated handle for the EFI image.
|
---|
17 | @param[in] SystemTable A pointer to the EFI System Table.
|
---|
18 |
|
---|
19 | @retval EFI_SUCCESS The entry point is executed successfully.
|
---|
20 | @retval other Some error occurs when executing this entry point.
|
---|
21 |
|
---|
22 | **/
|
---|
23 | EFI_STATUS
|
---|
24 | EFIAPI
|
---|
25 | UefiMain (
|
---|
26 | IN EFI_HANDLE ImageHandle,
|
---|
27 | IN EFI_SYSTEM_TABLE *SystemTable
|
---|
28 | )
|
---|
29 | {
|
---|
30 | Print (L"ShellExecute - Pass");
|
---|
31 | return EFI_SUCCESS;
|
---|
32 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.