diff options
author | jcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-04-15 18:20:40 +0000 |
---|---|---|
committer | jcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-04-15 18:20:40 +0000 |
commit | a49f6a2f7e0d0141519c136905ce70038573ce40 (patch) | |
tree | 638c8fdf8a2940c5a7eeb606fbc6372389ceafdf /ShellPkg/Application/Shell/Shell.h | |
parent | f6ea51e5ac7195f550cdabacc088597d3f63b6e2 (diff) | |
download | edk2-platforms-a49f6a2f7e0d0141519c136905ce70038573ce40.tar.xz |
fix for word wrapping.
fix for SimpleTextInEx callbacks.
remove an ASSERT.
fix for -noconsolein parameter.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11544 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg/Application/Shell/Shell.h')
-rw-r--r-- | ShellPkg/Application/Shell/Shell.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ShellPkg/Application/Shell/Shell.h b/ShellPkg/Application/Shell/Shell.h index 3699fb233d..51ec4f3a4b 100644 --- a/ShellPkg/Application/Shell/Shell.h +++ b/ShellPkg/Application/Shell/Shell.h @@ -50,6 +50,7 @@ #include "ShellEnvVar.h"
#include "ConsoleLogger.h"
#include "ShellManParser.h"
+#include "ConsoleWrappers.h"
typedef struct {
LIST_ENTRY Link; ///< Standard linked list handler.
@@ -113,6 +114,7 @@ typedef struct { EFI_HANDLE CtrlSNotifyHandle2; ///< The NotifyHandle returned from SimpleTextInputEx.RegisterKeyNotify.
EFI_HANDLE CtrlSNotifyHandle3; ///< The NotifyHandle returned from SimpleTextInputEx.RegisterKeyNotify.
EFI_HANDLE CtrlSNotifyHandle4; ///< The NotifyHandle returned from SimpleTextInputEx.RegisterKeyNotify.
+ BOOLEAN HaltOutput; ///< TRUE to start a CTRL-S halt.
} SHELL_INFO;
extern SHELL_INFO ShellInfoObject;
|