Home | History | Annotate | Download | only in Guid
      1 /** @file
      2   Guid used to identify HII FormMap configuration method.
      3 
      4   Copyright (c) 2009, 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   @par Revision Reference:
     14   GUID defined in UEFI 2.2 spec.
     15 **/
     16 
     17 #ifndef __EFI_HII_FORMMAP_GUID_H__
     18 #define __EFI_HII_FORMMAP_GUID_H__
     19 
     20 #define EFI_HII_STANDARD_FORM_GUID \
     21   { 0x3bd2f4ec, 0xe524, 0x46e4, { 0xa9, 0xd8, 0x51, 0x1, 0x17, 0x42, 0x55, 0x62 } }
     22 
     23 extern EFI_GUID gEfiHiiStandardFormGuid;
     24 
     25 #endif
     26