1/** @file
2  GUID used as EFI variable to store platform language at last time enumeration.
3
4Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
5This program and the accompanying materials are licensed and made available under
6the terms and conditions of the BSD License that accompanies this distribution.
7The full text of the license may be found at
8http://opensource.org/licenses/bsd-license.php.
9
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13**/
14
15#ifndef __LAST_ENUM_LANGUAGE_GUID_H__
16#define __LAST_ENUM_LANGUAGE_GUID_H__
17
18///
19/// This GUID is used for Set/Get platform language into/from variable at last time enumeration
20/// to ensure the enumeration will only execute once.
21///
22#define LAST_ENUM_LANGUAGE_GUID \
23  { \
24  0xe8c545b, 0xa2ee, 0x470d, { 0x8e, 0x26, 0xbd, 0xa1, 0xa1, 0x3c, 0xa, 0xa3 } \
25  }
26
27#define LAST_ENUM_LANGUAGE_VARIABLE_NAME L"LastEnumLang"
28
29extern EFI_GUID gLastEnumLangGuid;
30
31#endif
32