Home | History | Annotate | Download | only in PlatformVarCleanupLib
      1 /** @file
      2  Platform variable cleanup Formset.
      3 
      4 Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
      5 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 #include "PlatVarCleanupHii.h"
     16 
     17 formset
     18   guid     = VARIABLE_CLEANUP_HII_GUID,
     19   title    = STRING_TOKEN(STR_ENTRY_TITLE),
     20   help     = STRING_TOKEN(STR_TITLE_HELP),
     21 
     22   varstore VARIABLE_CLEANUP_DATA,
     23     varid = VARIABLE_CLEANUP_VARSTORE_ID,
     24     name  = VariableCleanup,
     25     guid  = VARIABLE_CLEANUP_HII_GUID;
     26 
     27   form formid = FORM_ID_VARIABLE_CLEANUP,
     28     title = STRING_TOKEN(STR_TITLE);
     29 
     30     checkbox varid = VARIABLE_CLEANUP_DATA.SelectAll,
     31       prompt   = STRING_TOKEN(STR_SELECT_ALL_PROMPT),
     32       help     = STRING_TOKEN(STR_SELECT_ALL_HELP),
     33       flags    = INTERACTIVE,
     34       key      = SELECT_ALL_QUESTION_ID,
     35     endcheckbox;
     36 
     37     label LABEL_START;
     38     label LABEL_END;
     39 
     40   endform;
     41 endformset;
     42