2009-07-12 05:43:03 +02:00
|
|
|
/** @file
|
2010-09-14 07:18:09 +02:00
|
|
|
Provides application point extension for "C" style main funciton.
|
2009-07-12 05:43:03 +02:00
|
|
|
|
2011-03-25 22:03:58 +01:00
|
|
|
Copyright (c) 2006 - 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-07-12 05:43:03 +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-07-12 05:43:03 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
2011-04-05 22:55:45 +02:00
|
|
|
#ifndef _SHELL_C_ENTRY_LIB_
|
2011-03-25 22:03:58 +01:00
|
|
|
#define _SHELL_C_ENTRY_LIB_
|
|
|
|
|
2009-07-12 05:43:03 +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.
|
|
|
|
|
2010-09-14 07:18:09 +02:00
|
|
|
@param[in] Argc The number of parameters.
|
|
|
|
@param[in] Argv The array of pointers to parameters.
|
2009-07-12 05:43:03 +02:00
|
|
|
|
|
|
|
@retval 0 The application exited normally.
|
|
|
|
@retval Other An error occurred.
|
|
|
|
|
|
|
|
**/
|
|
|
|
INTN
|
2010-01-25 21:05:08 +01:00
|
|
|
EFIAPI
|
2009-07-12 05:43:03 +02:00
|
|
|
ShellAppMain (
|
2010-01-25 21:05:08 +01:00
|
|
|
IN UINTN Argc,
|
2009-07-12 05:43:03 +02:00
|
|
|
IN CHAR16 **Argv
|
|
|
|
);
|
2011-03-25 22:03:58 +01:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|