]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/Include/Library/ShellCEntryLib.h
clarify content
[mirror_edk2.git] / ShellPkg / Include / Library / ShellCEntryLib.h
1 /** @file
2 Provides application point extension for "C" style main funciton
3
4 Copyright (c) 2006 - 2009, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 /**
16 Intermediate entry point for the application that will in turn call into the "C"
17 style main function.
18
19 this application must have a function defined as follows:
20 INT32
21 EFIAPI
22 main(
23 UINTN Argc,
24 CHAR16 **Argv
25 );
26 **/
27 EFI_STATUS
28 EFIAPI
29 ShellCEntry(
30 IN EFI_HANDLE ImageHandle,
31 IN EFI_SYSTEM_TABLE *SystemTable
32 );