TianoCore EDK2 master
|
#include <Uefi.h>
#include <Library/UefiLib.h>
#include <Library/DebugLib.h>
#include <Library/ShellCEntryLib.h>
Go to the source code of this file.
Functions | |
INTN EFIAPI | ShellAppMain (IN UINTN Argc, IN CHAR16 **Argv) |
This is a test application that demonstrates how to use the C-style entry point for a shell application.
Copyright (c) 2009 - 2015, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file ShellCTestApp.c.
UEFI application entry point which has an interface similar to a standard C main function.
The ShellCEntryLib library instance wrappers the actual UEFI application entry point and calls this ShellAppMain function.
[in] | Argc | The number of items in Argv. |
[in] | Argv | Array of pointers to strings. |
0 | The application exited normally. |
Other | An error occurred. |
Definition at line 31 of file ShellCTestApp.c.