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:
xdu2 2009-11-18 05:28:31 +00:00
parent 3227f99545
commit 2bb526f3da
2 changed files with 3 additions and 0 deletions

View File

@ -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;

View File

@ -490,6 +490,7 @@ typedef struct {
CHAR16 *AdjustNumber;
CHAR16 *SaveChanges;
CHAR16 *OptionMismatch;
CHAR16 *FormSuppress;
CHAR16 PromptBlockWidth;
CHAR16 OptionBlockWidth;
CHAR16 HelpBlockWidth;