mirror of https://github.com/acidanthera/audk.git
Add newly added global to Browser Context.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9443 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
3227f99545
commit
2bb526f3da
|
@ -2680,6 +2680,7 @@ SaveBrowserContext (
|
|||
Context->AdjustNumber = gAdjustNumber;
|
||||
Context->SaveChanges = gSaveChanges;
|
||||
Context->OptionMismatch = gOptionMismatch;
|
||||
Context->FormSuppress = gFormSuppress;
|
||||
Context->PromptBlockWidth = gPromptBlockWidth;
|
||||
Context->OptionBlockWidth = gOptionBlockWidth;
|
||||
Context->HelpBlockWidth = gHelpBlockWidth;
|
||||
|
@ -2760,6 +2761,7 @@ RestoreBrowserContext (
|
|||
gAdjustNumber = Context->AdjustNumber;
|
||||
gSaveChanges = Context->SaveChanges;
|
||||
gOptionMismatch = Context->OptionMismatch;
|
||||
gFormSuppress = Context->FormSuppress;
|
||||
gPromptBlockWidth = Context->PromptBlockWidth;
|
||||
gOptionBlockWidth = Context->OptionBlockWidth;
|
||||
gHelpBlockWidth = Context->HelpBlockWidth;
|
||||
|
|
|
@ -490,6 +490,7 @@ typedef struct {
|
|||
CHAR16 *AdjustNumber;
|
||||
CHAR16 *SaveChanges;
|
||||
CHAR16 *OptionMismatch;
|
||||
CHAR16 *FormSuppress;
|
||||
CHAR16 PromptBlockWidth;
|
||||
CHAR16 OptionBlockWidth;
|
||||
CHAR16 HelpBlockWidth;
|
||||
|
|
Loading…
Reference in New Issue