Home | History | Annotate | Download | only in EfiIfrSupportLib

Lines Matching defs:CheckBox

370   Create a checkbox opcode independent of string creation

393 EFI_SUCCESS - Checkbox created to be a form
399 EFI_IFR_CHECK_BOX CheckBox;
402 // We do not create op-code storage widths for checkbox in excess of 8 bits for now
408 CheckBox.Header.OpCode = EFI_IFR_CHECKBOX_OP;
409 CheckBox.Header.Length = (UINT8) sizeof (EFI_IFR_CHECK_BOX);
410 CheckBox.QuestionId = QuestionId;
411 CheckBox.Width = DataWidth;
412 CheckBox.Prompt = PromptToken;
414 CheckBox.Help = HelpToken;
415 CheckBox.Flags = Flags;
416 CheckBox.Key = Key;
418 EfiCopyMem (FormBuffer, &CheckBox, sizeof (EFI_IFR_CHECK_BOX));