]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/SetupBrowserDxe/Ui.h
45fb3eba3efaaced2b38e0e4003c4749a34ed7a3
[mirror_edk2.git] / MdeModulePkg / Universal / SetupBrowserDxe / Ui.h
1 /** @file
2 Private structure, MACRO and function definitions for User Interface related functionalities.
3
4 Copyright (c) 2004 - 2010, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #ifndef _UI_H_
16 #define _UI_H_
17
18 //
19 // Globals
20 //
21 #define REGULAR_NUMERIC 0
22 #define TIME_NUMERIC 1
23 #define DATE_NUMERIC 2
24
25 #define SUBTITLE_INDENT 2
26
27
28 //
29 // It take 23 characters including the NULL to print a 64 bits number with "[" and "]".
30 // pow(2, 64) = [18446744073709551616]
31 //
32 #define MAX_NUMERIC_INPUT_WIDTH 23
33
34 typedef enum {
35 UiNoOperation,
36 UiDefault,
37 UiSelect,
38 UiUp,
39 UiDown,
40 UiLeft,
41 UiRight,
42 UiReset,
43 UiSave,
44 UiPrevious,
45 UiPageUp,
46 UiPageDown,
47 UiMaxOperation
48 } UI_SCREEN_OPERATION;
49
50 typedef enum {
51 CfInitialization,
52 CfCheckSelection,
53 CfRepaint,
54 CfRefreshHighLight,
55 CfUpdateHelpString,
56 CfPrepareToReadKey,
57 CfReadKey,
58 CfScreenOperation,
59 CfUiSelect,
60 CfUiReset,
61 CfUiLeft,
62 CfUiRight,
63 CfUiUp,
64 CfUiPageUp,
65 CfUiPageDown,
66 CfUiDown,
67 CfUiSave,
68 CfUiDefault,
69 CfUiNoOperation,
70 CfExit,
71 CfMaxControlFlag
72 } UI_CONTROL_FLAG;
73
74 #define UI_ACTION_NONE 0
75 #define UI_ACTION_REFRESH_FORM 1
76 #define UI_ACTION_REFRESH_FORMSET 2
77 #define UI_ACTION_EXIT 3
78
79 typedef struct {
80 EFI_HII_HANDLE Handle;
81
82 //
83 // Target formset/form/Question information
84 //
85 EFI_GUID FormSetGuid;
86 UINT16 FormId;
87 UINT16 QuestionId;
88
89 UINTN TopRow;
90 UINTN BottomRow;
91 UINTN PromptCol;
92 UINTN OptionCol;
93 UINTN CurrentRow;
94
95 //
96 // Ation for Browser to taken:
97 // UI_ACTION_NONE - navigation inside a form
98 // UI_ACTION_REFRESH_FORM - re-evaluate expressions and repaint form
99 // UI_ACTION_REFRESH_FORMSET - re-parse formset IFR binary
100 //
101 UINTN Action;
102
103 //
104 // Current selected fomset/form/Question
105 //
106 FORM_BROWSER_FORMSET *FormSet;
107 FORM_BROWSER_FORM *Form;
108 FORM_BROWSER_STATEMENT *Statement;
109
110 //
111 // Whether the Form is editable
112 //
113 BOOLEAN FormEditable;
114 } UI_MENU_SELECTION;
115
116 #define UI_MENU_OPTION_SIGNATURE SIGNATURE_32 ('u', 'i', 'm', 'm')
117 #define UI_MENU_LIST_SIGNATURE SIGNATURE_32 ('u', 'i', 'm', 'l')
118
119 typedef struct {
120 UINTN Signature;
121 LIST_ENTRY Link;
122
123 EFI_HII_HANDLE Handle;
124 FORM_BROWSER_STATEMENT *ThisTag;
125 UINT16 EntryNumber;
126
127 UINTN Row;
128 UINTN Col;
129 UINTN OptCol;
130 CHAR16 *Description;
131 UINTN Skip; // Number of lines
132
133 //
134 // Display item sequence for date/time
135 // Date: Month/Day/Year
136 // Sequence: 0 1 2
137 //
138 // Time: Hour : Minute : Second
139 // Sequence: 0 1 2
140 //
141 //
142 UINTN Sequence;
143
144 BOOLEAN GrayOut;
145 BOOLEAN ReadOnly;
146
147 //
148 // Whether user could change value of this item
149 //
150 BOOLEAN IsQuestion;
151 } UI_MENU_OPTION;
152
153 #define MENU_OPTION_FROM_LINK(a) CR (a, UI_MENU_OPTION, Link, UI_MENU_OPTION_SIGNATURE)
154
155 typedef struct _UI_MENU_LIST UI_MENU_LIST;
156
157 struct _UI_MENU_LIST {
158 UINTN Signature;
159 LIST_ENTRY Link;
160
161 EFI_GUID FormSetGuid;
162 UINT16 FormId;
163 UINT16 QuestionId;
164
165 UI_MENU_LIST *Parent;
166 LIST_ENTRY ChildListHead;
167 };
168
169 #define UI_MENU_LIST_FROM_LINK(a) CR (a, UI_MENU_LIST, Link, UI_MENU_LIST_SIGNATURE)
170
171 typedef struct _MENU_REFRESH_ENTRY MENU_REFRESH_ENTRY;
172 struct _MENU_REFRESH_ENTRY {
173 MENU_REFRESH_ENTRY *Next;
174 UI_MENU_OPTION *MenuOption; // Describes the entry needing an update
175 UI_MENU_SELECTION *Selection;
176 UINTN CurrentColumn;
177 UINTN CurrentRow;
178 UINTN CurrentAttribute;
179 };
180
181 typedef struct {
182 UINT16 ScanCode;
183 UI_SCREEN_OPERATION ScreenOperation;
184 } SCAN_CODE_TO_SCREEN_OPERATION;
185
186 typedef struct {
187 UI_SCREEN_OPERATION ScreenOperation;
188 UI_CONTROL_FLAG ControlFlag;
189 } SCREEN_OPERATION_T0_CONTROL_FLAG;
190
191
192 extern LIST_ENTRY gMenuOption;
193 extern MENU_REFRESH_ENTRY *gMenuRefreshHead;
194 extern UI_MENU_SELECTION *gCurrentSelection;
195 extern BOOLEAN mHiiPackageListUpdated;
196
197 //
198 // Global Functions
199 //
200 /**
201 Initialize Menu option list.
202
203 **/
204 VOID
205 UiInitMenu (
206 VOID
207 );
208
209 /**
210 Initialize Menu option list.
211
212 **/
213 VOID
214 UiInitMenuList (
215 VOID
216 );
217
218 /**
219 Free Menu option linked list.
220
221 **/
222 VOID
223 UiFreeMenu (
224 VOID
225 );
226
227 /**
228 Create a menu with specified formset GUID and form ID, and add it as a child
229 of the given parent menu.
230
231 @param Parent The parent of menu to be added.
232 @param FormSetGuid The Formset Guid of menu to be added.
233 @param FormId The Form ID of menu to be added.
234
235 @return A pointer to the newly added menu or NULL if memory is insufficient.
236
237 **/
238 UI_MENU_LIST *
239 UiAddMenuList (
240 IN OUT UI_MENU_LIST *Parent,
241 IN EFI_GUID *FormSetGuid,
242 IN UINT16 FormId
243 );
244
245 /**
246 Search Menu with given FormId in the parent menu and all its child menus.
247
248 @param Parent The parent of menu to search.
249 @param FormId The Form ID of menu to search.
250
251 @return A pointer to menu found or NULL if not found.
252
253 **/
254 UI_MENU_LIST *
255 UiFindChildMenuList (
256 IN UI_MENU_LIST *Parent,
257 IN UINT16 FormId
258 );
259
260 /**
261 Search Menu with given FormSetGuid and FormId in all cached menu list.
262
263 @param FormSetGuid The Formset GUID of the menu to search.
264 @param FormId The Form ID of menu to search.
265
266 @return A pointer to menu found or NULL if not found.
267
268 **/
269 UI_MENU_LIST *
270 UiFindMenuList (
271 IN EFI_GUID *FormSetGuid,
272 IN UINT16 FormId
273 );
274
275 /**
276 Free Menu option linked list.
277
278 **/
279 VOID
280 UiFreeRefreshList (
281 VOID
282 );
283
284 /**
285 Add one menu option by specified description and context.
286
287 @param String String description for this option.
288 @param Handle Hii handle for the package list.
289 @param Statement Statement of this Menu Option.
290 @param NumberOfLines Display lines for this Menu Option.
291 @param MenuItemCount The index for this Option in the Menu.
292
293 @retval Pointer Pointer to the added Menu Option.
294
295 **/
296 UI_MENU_OPTION *
297 UiAddMenuOption (
298 IN CHAR16 *String,
299 IN EFI_HII_HANDLE Handle,
300 IN FORM_BROWSER_STATEMENT *Statement,
301 IN UINT16 NumberOfLines,
302 IN UINT16 MenuItemCount
303 );
304
305 /**
306 Display menu and wait for user to select one menu option, then return it.
307 If AutoBoot is enabled, then if user doesn't select any option,
308 after period of time, it will automatically return the first menu option.
309
310 @param Selection Menu selection.
311
312 @return Return the pointer of the menu which selected,
313 @return otherwise return NULL.
314
315 **/
316 EFI_STATUS
317 UiDisplayMenu (
318 IN OUT UI_MENU_SELECTION *Selection
319 );
320
321 /**
322 Free up the resource allocated for all strings required
323 by Setup Browser.
324
325 **/
326 VOID
327 FreeBrowserStrings (
328 VOID
329 );
330
331 /**
332 The worker function that send the displays to the screen. On output,
333 the selection made by user is returned.
334
335 @param Selection On input, Selection tell setup browser the information
336 about the Selection, form and formset to be displayed.
337 On output, Selection return the screen item that is selected
338 by user.
339
340 @retval EFI_SUCCESS The page is displayed successfully.
341 @return Other value if the page failed to be diplayed.
342
343 **/
344 EFI_STATUS
345 SetupBrowser (
346 IN OUT UI_MENU_SELECTION *Selection
347 );
348
349 /**
350 Set Buffer to Value for Size bytes.
351
352 @param Buffer Memory to set.
353 @param Size Number of bytes to set
354 @param Value Value of the set operation.
355
356 **/
357 VOID
358 SetUnicodeMem (
359 IN VOID *Buffer,
360 IN UINTN Size,
361 IN CHAR16 Value
362 );
363
364 /**
365 Wait for a given event to fire, or for an optional timeout to expire.
366
367 @param Event The event to wait for
368 @param Timeout An optional timeout value in 100 ns units.
369 @param RefreshInterval Menu refresh interval (in seconds).
370
371 @retval EFI_SUCCESS Event fired before Timeout expired.
372 @retval EFI_TIME_OUT Timout expired before Event fired.
373
374 **/
375 EFI_STATUS
376 UiWaitForSingleEvent (
377 IN EFI_EVENT Event,
378 IN UINT64 Timeout, OPTIONAL
379 IN UINT8 RefreshInterval OPTIONAL
380 );
381
382 /**
383 Draw a pop up windows based on the dimension, number of lines and
384 strings specified.
385
386 @param ScreenWidth The width of the pop-up.
387 @param NumberOfLines The number of lines.
388 @param ... A series of text strings that displayed in the pop-up.
389
390 **/
391 VOID
392 CreateMultiStringPopUp (
393 IN UINTN ScreenWidth,
394 IN UINTN NumberOfLines,
395 ...
396 );
397
398 /**
399 Get string or password input from user.
400
401 @param MenuOption Pointer to the current input menu.
402 @param Prompt The prompt string shown on popup window.
403 @param StringPtr Destination for use input string.
404
405 @retval EFI_SUCCESS If string input is read successfully
406 @retval EFI_DEVICE_ERROR If operation fails
407
408 **/
409 EFI_STATUS
410 ReadString (
411 IN UI_MENU_OPTION *MenuOption,
412 IN CHAR16 *Prompt,
413 OUT CHAR16 *StringPtr
414 );
415
416 /**
417 Get selection for OneOf and OrderedList (Left/Right will be ignored).
418
419 @param Selection Pointer to current selection.
420 @param MenuOption Pointer to the current input menu.
421
422 @retval EFI_SUCCESS If Option input is processed successfully
423 @retval EFI_DEVICE_ERROR If operation fails
424
425 **/
426 EFI_STATUS
427 GetSelectionInputPopUp (
428 IN UI_MENU_SELECTION *Selection,
429 IN UI_MENU_OPTION *MenuOption
430 );
431
432 /**
433 This routine reads a numeric value from the user input.
434
435 @param Selection Pointer to current selection.
436 @param MenuOption Pointer to the current input menu.
437
438 @retval EFI_SUCCESS If numerical input is read successfully
439 @retval EFI_DEVICE_ERROR If operation fails
440
441 **/
442 EFI_STATUS
443 GetNumericInput (
444 IN UI_MENU_SELECTION *Selection,
445 IN UI_MENU_OPTION *MenuOption
446 );
447
448 /**
449 Update status bar on the bottom of menu.
450
451 @param MessageType The type of message to be shown.
452 @param Flags The flags in Question header.
453 @param State Set or clear.
454
455 **/
456 VOID
457 UpdateStatusBar (
458 IN UINTN MessageType,
459 IN UINT8 Flags,
460 IN BOOLEAN State
461 );
462
463 /**
464 Process Question Config.
465
466 @param Selection The UI menu selection.
467 @param Question The Question to be peocessed.
468
469 @retval EFI_SUCCESS Question Config process success.
470 @retval Other Question Config process fail.
471
472 **/
473 EFI_STATUS
474 ProcessQuestionConfig (
475 IN UI_MENU_SELECTION *Selection,
476 IN FORM_BROWSER_STATEMENT *Question
477 );
478
479 /**
480 Print Question Value according to it's storage width and display attributes.
481
482 @param Question The Question to be printed.
483 @param FormattedNumber Buffer for output string.
484 @param BufferSize The FormattedNumber buffer size in bytes.
485
486 @retval EFI_SUCCESS Print success.
487 @retval EFI_BUFFER_TOO_SMALL Buffer size is not enough for formatted number.
488
489 **/
490 EFI_STATUS
491 PrintFormattedNumber (
492 IN FORM_BROWSER_STATEMENT *Question,
493 IN OUT CHAR16 *FormattedNumber,
494 IN UINTN BufferSize
495 );
496
497 /**
498 Search an Option of a Question by its value.
499
500 @param Question The Question
501 @param OptionValue Value for Option to be searched.
502
503 @retval Pointer Pointer to the found Option.
504 @retval NULL Option not found.
505
506 **/
507 QUESTION_OPTION *
508 ValueToOption (
509 IN FORM_BROWSER_STATEMENT *Question,
510 IN EFI_HII_VALUE *OptionValue
511 );
512
513 /**
514 Return data element in an Array by its Index.
515
516 @param Array The data array.
517 @param Type Type of the data in this array.
518 @param Index Zero based index for data in this array.
519
520 @retval Value The data to be returned
521
522 **/
523 UINT64
524 GetArrayData (
525 IN VOID *Array,
526 IN UINT8 Type,
527 IN UINTN Index
528 );
529
530 /**
531 Set value of a data element in an Array by its Index.
532
533 @param Array The data array.
534 @param Type Type of the data in this array.
535 @param Index Zero based index for data in this array.
536 @param Value The value to be set.
537
538 **/
539 VOID
540 SetArrayData (
541 IN VOID *Array,
542 IN UINT8 Type,
543 IN UINTN Index,
544 IN UINT64 Value
545 );
546
547 /**
548 Process a Question's Option (whether selected or un-selected).
549
550 @param Selection Pointer to UI_MENU_SELECTION.
551 @param MenuOption The MenuOption for this Question.
552 @param Selected TRUE: if Question is selected.
553 @param OptionString Pointer of the Option String to be displayed.
554
555 @retval EFI_SUCCESS Question Option process success.
556 @retval Other Question Option process fail.
557
558 **/
559 EFI_STATUS
560 ProcessOptions (
561 IN UI_MENU_SELECTION *Selection,
562 IN UI_MENU_OPTION *MenuOption,
563 IN BOOLEAN Selected,
564 OUT CHAR16 **OptionString
565 );
566
567 /**
568 Process the help string: Split StringPtr to several lines of strings stored in
569 FormattedString and the glyph width of each line cannot exceed gHelpBlockWidth.
570
571 @param StringPtr The entire help string.
572 @param FormattedString The oupput formatted string.
573 @param RowCount TRUE: if Question is selected.
574
575 **/
576 VOID
577 ProcessHelpString (
578 IN CHAR16 *StringPtr,
579 OUT CHAR16 **FormattedString,
580 IN UINTN RowCount
581 );
582
583 /**
584 Update key's help imformation.
585
586 @param Selection Tell setup browser the information about the Selection
587 @param MenuOption The Menu option
588 @param Selected Whether or not a tag be selected
589
590 **/
591 VOID
592 UpdateKeyHelp (
593 IN UI_MENU_SELECTION *Selection,
594 IN UI_MENU_OPTION *MenuOption,
595 IN BOOLEAN Selected
596 );
597
598 /**
599 Clear retangle with specified text attribute.
600
601 @param LeftColumn Left column of retangle.
602 @param RightColumn Right column of retangle.
603 @param TopRow Start row of retangle.
604 @param BottomRow End row of retangle.
605 @param TextAttribute The character foreground and background.
606
607 **/
608 VOID
609 ClearLines (
610 IN UINTN LeftColumn,
611 IN UINTN RightColumn,
612 IN UINTN TopRow,
613 IN UINTN BottomRow,
614 IN UINTN TextAttribute
615 );
616
617 /**
618 Count the storage space of a Unicode string.
619
620 This function handles the Unicode string with NARROW_CHAR
621 and WIDE_CHAR control characters. NARROW_HCAR and WIDE_CHAR
622 does not count in the resultant output. If a WIDE_CHAR is
623 hit, then 2 Unicode character will consume an output storage
624 space with size of CHAR16 till a NARROW_CHAR is hit.
625
626 @param String The input string to be counted.
627
628 @return Storage space for the input string.
629
630 **/
631 UINTN
632 GetStringWidth (
633 IN CHAR16 *String
634 );
635
636 /**
637 Will copy LineWidth amount of a string in the OutputString buffer and return the
638 number of CHAR16 characters that were copied into the OutputString buffer.
639
640 @param InputString String description for this option.
641 @param LineWidth Width of the desired string to extract in CHAR16
642 characters
643 @param Index Where in InputString to start the copy process
644 @param OutputString Buffer to copy the string into
645
646 @return Returns the number of CHAR16 characters that were copied into the OutputString buffer.
647
648 **/
649 UINT16
650 GetLineByWidth (
651 IN CHAR16 *InputString,
652 IN UINT16 LineWidth,
653 IN OUT UINTN *Index,
654 OUT CHAR16 **OutputString
655 );
656
657 /**
658 Get the supported width for a particular op-code
659
660 @param Statement The FORM_BROWSER_STATEMENT structure passed in.
661 @param Handle The handle in the HII database being used
662
663 @return Returns the number of CHAR16 characters that is support.
664
665 **/
666 UINT16
667 GetWidth (
668 IN FORM_BROWSER_STATEMENT *Statement,
669 IN EFI_HII_HANDLE Handle
670 );
671
672 /**
673 Concatenate a narrow string to another string.
674
675 @param Destination The destination string.
676 @param Source The source string. The string to be concatenated.
677 to the end of Destination.
678
679 **/
680 VOID
681 NewStrCat (
682 IN OUT CHAR16 *Destination,
683 IN CHAR16 *Source
684 );
685
686 /**
687 Wait for a key to be pressed by user.
688
689 @param Key The key which is pressed by user.
690
691 @retval EFI_SUCCESS The function always completed successfully.
692
693 **/
694 EFI_STATUS
695 WaitForKeyStroke (
696 OUT EFI_INPUT_KEY *Key
697 );
698
699 /**
700 Reset stack pointer to begin of the stack.
701
702 **/
703 VOID
704 ResetScopeStack (
705 VOID
706 );
707
708 /**
709 Push an Operand onto the Stack
710
711 @param Operand Operand to push.
712
713 @retval EFI_SUCCESS The value was pushed onto the stack.
714 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the
715 stack.
716
717 **/
718 EFI_STATUS
719 PushScope (
720 IN UINT8 Operand
721 );
722
723 /**
724 Pop an Operand from the Stack
725
726 @param Operand Operand to pop.
727
728 @retval EFI_SUCCESS The value was pushed onto the stack.
729 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the
730 stack.
731
732 **/
733 EFI_STATUS
734 PopScope (
735 OUT UINT8 *Operand
736 );
737
738 /**
739 Reset stack pointer to begin of the stack.
740
741 **/
742 VOID
743 ResetCurrentExpressionStack (
744 VOID
745 );
746
747 /**
748 Push current expression onto the Stack
749
750 @param Pointer Pointer to current expression.
751
752 @retval EFI_SUCCESS The value was pushed onto the stack.
753 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the stack.
754
755 **/
756 EFI_STATUS
757 PushCurrentExpression (
758 IN VOID *Pointer
759 );
760
761 /**
762 Pop current expression from the Stack
763
764 @param Pointer Pointer to current expression to be pop.
765
766 @retval EFI_SUCCESS The value was pushed onto the stack.
767 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the stack.
768
769 **/
770 EFI_STATUS
771 PopCurrentExpression (
772 OUT VOID **Pointer
773 );
774
775 /**
776 Reset stack pointer to begin of the stack.
777
778 **/
779 VOID
780 ResetMapExpressionListStack (
781 VOID
782 );
783
784 /**
785 Push the list of map expression onto the Stack
786
787 @param Pointer Pointer to the list of map expression to be pushed.
788
789 @retval EFI_SUCCESS The value was pushed onto the stack.
790 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the stack.
791
792 **/
793 EFI_STATUS
794 PushMapExpressionList (
795 IN VOID *Pointer
796 );
797
798 /**
799 Pop the list of map expression from the Stack
800
801 @param Pointer Pointer to the list of map expression to be pop.
802
803 @retval EFI_SUCCESS The value was pushed onto the stack.
804 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the stack.
805
806 **/
807 EFI_STATUS
808 PopMapExpressionList (
809 OUT VOID **Pointer
810 );
811
812 /**
813 Get Form given its FormId.
814
815 @param FormSet The formset which contains this form.
816 @param FormId Id of this form.
817
818 @retval Pointer The form.
819 @retval NULL Specified Form is not found in the formset.
820
821 **/
822 FORM_BROWSER_FORM *
823 IdToForm (
824 IN FORM_BROWSER_FORMSET *FormSet,
825 IN UINT16 FormId
826 );
827
828 /**
829 Search a Question in Formset scope using its QuestionId.
830
831 @param FormSet The formset which contains this form.
832 @param Form The form which contains this Question.
833 @param QuestionId Id of this Question.
834
835 @retval Pointer The Question.
836 @retval NULL Specified Question not found in the form.
837
838 **/
839 FORM_BROWSER_STATEMENT *
840 IdToQuestion (
841 IN FORM_BROWSER_FORMSET *FormSet,
842 IN FORM_BROWSER_FORM *Form,
843 IN UINT16 QuestionId
844 );
845
846 /**
847 Zero extend integer/boolean/date/time to UINT64 for comparing.
848
849 @param Value HII Value to be converted.
850
851 **/
852 VOID
853 ExtendValueToU64 (
854 IN EFI_HII_VALUE *Value
855 );
856
857 /**
858 Compare two Hii value.
859
860 @param Value1 Expression value to compare on left-hand.
861 @param Value2 Expression value to compare on right-hand.
862 @param HiiHandle Only required for string compare.
863
864 @retval EFI_INVALID_PARAMETER Could not perform comparation on two values.
865 @retval 0 Two operators equeal.
866 @return Positive value if Value1 is greater than Value2.
867 @retval Negative value if Value1 is less than Value2.
868
869 **/
870 INTN
871 CompareHiiValue (
872 IN EFI_HII_VALUE *Value1,
873 IN EFI_HII_VALUE *Value2,
874 IN EFI_HII_HANDLE HiiHandle OPTIONAL
875 );
876
877 /**
878 Evaluate the result of a HII expression
879
880 If Expression is NULL, then ASSERT.
881
882 @param FormSet FormSet associated with this expression.
883 @param Form Form associated with this expression.
884 @param Expression Expression to be evaluated.
885
886 @retval EFI_SUCCESS The expression evaluated successfuly
887 @retval EFI_NOT_FOUND The Question which referenced by a QuestionId
888 could not be found.
889 @retval EFI_OUT_OF_RESOURCES There is not enough system memory to grow the
890 stack.
891 @retval EFI_ACCESS_DENIED The pop operation underflowed the stack
892 @retval EFI_INVALID_PARAMETER Syntax error with the Expression
893
894 **/
895 EFI_STATUS
896 EvaluateExpression (
897 IN FORM_BROWSER_FORMSET *FormSet,
898 IN FORM_BROWSER_FORM *Form,
899 IN OUT FORM_EXPRESSION *Expression
900 );
901
902 #endif // _UI_H