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