diff options
author | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-07-18 17:46:59 +0800 |
---|---|---|
committer | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-07-20 10:27:56 +0800 |
commit | 0fcf8d4df85d861b6e721bd1d8abb449f05e15ed (patch) | |
tree | e2b3aecc87e5b034e58528170c1e5210ae22b826 /ShellPkg/Include | |
parent | c0bcd3433f33876c519bf5567e0ab69261b57fe9 (diff) | |
download | edk2-0fcf8d4df85d861b6e721bd1d8abb449f05e15ed.zip edk2-0fcf8d4df85d861b6e721bd1d8abb449f05e15ed.tar.gz edk2-0fcf8d4df85d861b6e721bd1d8abb449f05e15ed.tar.bz2 |
ShellPkg: Add Shell[Get|Set]RawCmdLine to ShellCommandLib
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
Diffstat (limited to 'ShellPkg/Include')
-rw-r--r-- | ShellPkg/Include/Library/ShellCommandLib.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ShellPkg/Include/Library/ShellCommandLib.h b/ShellPkg/Include/Library/ShellCommandLib.h index 5c5e241..44eccc4 100644 --- a/ShellPkg/Include/Library/ShellCommandLib.h +++ b/ShellPkg/Include/Library/ShellCommandLib.h @@ -670,6 +670,29 @@ ShellFileHandleEof( IN SHELL_FILE_HANDLE Handle
);
+/**
+ Function to get the original CmdLine string for current command.
+
+ @return A pointer to the buffer of the original command string.
+ It's the caller's responsibility to free the buffer.
+**/
+CHAR16*
+EFIAPI
+ShellGetRawCmdLine (
+ VOID
+ );
+
+/**
+ Function to store the orgignal command string into mOriginalCmdLine.
+
+ @param[in] CmdLine the command line string to store.
+**/
+VOID
+EFIAPI
+ShellSetRawCmdLine (
+ IN CONST CHAR16 *CmdLine
+ );
+
typedef struct {
LIST_ENTRY Link;
void *Buffer;
|