1///** @file 2// 3// VFR to produce the formset used by UI. 4// 5// Copyright (c) 2013 - 2015, Intel Corporation. All rights reserved.<BR> 6// This program and the accompanying materials 7// are licensed and made available under the terms and conditions of the BSD License 8// which accompanies this distribution. The full text of the license may be found at 9// http://opensource.org/licenses/bsd-license.php 10// 11// THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12// WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13//**/ 14 15#include "DriverHealthManagerVfr.h" 16 17formset 18 guid = DRIVER_HEALTH_MANAGER_FORMSET_GUID, 19 title = STRING_TOKEN(STR_FORM_TITLE), 20 help = STRING_TOKEN(STR_FORM_HELP), 21 classguid = EFI_HII_PLATFORM_SETUP_FORMSET_GUID, 22 23 form formid = DRIVER_HEALTH_FORM_ID, 24 title = STRING_TOKEN(STR_FORM_TITLE); 25 26 label LABEL_BEGIN; 27 label LABEL_END; 28 29 suppressif TRUE; 30 text 31 help = STRING_TOKEN(STR_NULL), 32 text = STRING_TOKEN(STR_NULL), 33 flags = INTERACTIVE, 34 key = QUESTION_ID_REFRESH_MANAGER; 35 endif; 36 37 endform; 38endformset; 39