diff options
author | jcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-03-25 21:03:58 +0000 |
---|---|---|
committer | jcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-03-25 21:03:58 +0000 |
commit | 4bbdc0e1bd5807c00a33e30dfc208e0e86b4c236 (patch) | |
tree | 072c807a772cb3bf4caa2e4d1630328f45621b36 /ShellPkg/Include/Library/ShellCEntryLib.h | |
parent | 7d271d7b01299f4a66a963996e40d34d4fc08b0b (diff) | |
download | edk2-platforms-4bbdc0e1bd5807c00a33e30dfc208e0e86b4c236.tar.xz |
FileHandleLib - use standard unicode file tag.
ShellCEntryLib - add #define protection.
ShellCommandLib - add optional sorting of command list.
ShellLib - add string-to-number with EFI_STATUS return value for verification.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11429 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg/Include/Library/ShellCEntryLib.h')
-rw-r--r-- | ShellPkg/Include/Library/ShellCEntryLib.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ShellPkg/Include/Library/ShellCEntryLib.h b/ShellPkg/Include/Library/ShellCEntryLib.h index f839372b39..79136a6894 100644 --- a/ShellPkg/Include/Library/ShellCEntryLib.h +++ b/ShellPkg/Include/Library/ShellCEntryLib.h @@ -1,7 +1,7 @@ /** @file
Provides application point extension for "C" style main funciton.
- Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
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
@@ -12,6 +12,9 @@ **/
+#if !defined (_SHELL_C_ENTRY_LIB_)
+#define _SHELL_C_ENTRY_LIB_
+
/**
UEFI application entry point which has an interface similar to a
standard C main function.
@@ -32,3 +35,6 @@ ShellAppMain ( IN UINTN Argc,
IN CHAR16 **Argv
);
+
+#endif
+
|