2009-06-16 21:59:59 +02:00
|
|
|
/** @file
|
2010-01-25 21:05:08 +01:00
|
|
|
This is a test application that demonstrates how to use the C-style entry point
|
2009-07-10 01:15:09 +02:00
|
|
|
for a shell application.
|
2009-06-16 21:59:59 +02:00
|
|
|
|
2011-03-25 22:22:50 +01:00
|
|
|
Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.<BR>
|
2010-01-25 21:05:08 +01:00
|
|
|
This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
2009-06-16 21:59:59 +02:00
|
|
|
|
2010-01-25 21:05:08 +01:00
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2009-06-16 21:59:59 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include <Uefi.h>
|
|
|
|
#include <Library/UefiLib.h>
|
|
|
|
#include <Library/DebugLib.h>
|
2009-06-23 23:40:29 +02:00
|
|
|
#include <Library/ShellCEntryLib.h>
|
2009-06-16 21:59:59 +02:00
|
|
|
|
2009-06-23 23:40:29 +02:00
|
|
|
/**
|
|
|
|
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.
|
|
|
|
|
2011-03-25 22:22:50 +01:00
|
|
|
@param[in] Argc The number of items in Argv.
|
|
|
|
@param[in] Argv Array of pointers to strings.
|
2009-06-23 23:40:29 +02:00
|
|
|
|
|
|
|
@retval 0 The application exited normally.
|
|
|
|
@retval Other An error occurred.
|
|
|
|
|
|
|
|
**/
|
2010-01-25 21:05:08 +01:00
|
|
|
INTN
|
|
|
|
EFIAPI
|
2009-06-17 10:02:21 +02:00
|
|
|
ShellAppMain (
|
2010-01-25 21:05:08 +01:00
|
|
|
IN UINTN Argc,
|
2009-06-17 10:02:21 +02:00
|
|
|
IN CHAR16 **Argv
|
|
|
|
)
|
|
|
|
{
|
2009-07-12 20:10:44 +02:00
|
|
|
UINTN Index;
|
2009-06-17 10:02:21 +02:00
|
|
|
|
|
|
|
Print(L"ShellCTestApp.c:ShellAppMain called with %d parameters\n", Argc);
|
|
|
|
for (Index = 0; Index < Argc; Index++) {
|
|
|
|
Print(L"Argv[%d]: %s\n", Index, Argv[Index]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2009-07-10 01:15:09 +02:00
|
|
|
}
|