diff options
author | jcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-03-25 20:58:08 +0000 |
---|---|---|
committer | jcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-03-25 20:58:08 +0000 |
commit | b54fd049bdfa0d9520a40d8a1783aa681b40d751 (patch) | |
tree | 8c21f91f299abf305f354260e3544dcf2d784c70 /ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.h | |
parent | 2398d9b1d75f3097c68be1d353d271c31789c5f3 (diff) | |
download | edk2-b54fd049bdfa0d9520a40d8a1783aa681b40d751.tar.gz edk2-b54fd049bdfa0d9520a40d8a1783aa681b40d751.tar.bz2 edk2-b54fd049bdfa0d9520a40d8a1783aa681b40d751.zip |
Cd - add more input verification.
Cp - support "\" as root of drive indicator.
Load - invert "-nc" to not connect.
Ls - ignore archive file attribute.
Map - add more input verification. fix add by handle.
Mv - support overwrite question. support "\" as root of drive indicator.
Parse - add comments.
Rm - add comments.
TimeDate - add more input verification. add comments.
Vol - add new command.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11426 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.h')
-rw-r--r-- | ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.h | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.h b/ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.h index c04acccf05..cf862fef43 100644 --- a/ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.h +++ b/ShellPkg/Library/UefiShellLevel2CommandsLib/UefiShellLevel2CommandsLib.h @@ -9,7 +9,7 @@ * functions are non-interactive only
- Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2009 - 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
@@ -20,6 +20,9 @@ **/
+#if !defined (_UEFI_SHELL_LEVEL2_COMMANDS_LIB_H_)
+#define _UEFI_SHELL_LEVEL2_COMMANDS_LIB_H_
+
#include <Uefi.h>
#include <ShellBase.h>
@@ -295,3 +298,19 @@ StrniCmp( IN CONST CHAR16 *Target,
IN CONST UINTN Count
);
+
+/**
+ Function for 'Vol' command.
+
+ @param[in] ImageHandle Handle to the Image (NULL if Internal).
+ @param[in] SystemTable Pointer to the System Table (NULL if Internal).
+**/
+SHELL_STATUS
+EFIAPI
+ShellCommandRunVol (
+ IN EFI_HANDLE ImageHandle,
+ IN EFI_SYSTEM_TABLE *SystemTable
+ );
+
+#endif
+
|