1 /** @file
2 
3   HII keyboard layout GUID as defined in UEFI2.1 specification
4 
5   Copyright (c) 2006 - 2008, 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   @par Revision Reference:
15   GUIDs defined in UEFI 2.1 spec.
16 
17 **/
18 
19 #ifndef __HII_KEYBOARD_LAYOUT_GUID_H__
20 #define __HII_KEYBOARD_LAYOUT_GUID_H__
21 
22 #define EFI_HII_SET_KEYBOARD_LAYOUT_EVENT_GUID \
23   { 0x14982a4f, 0xb0ed, 0x45b8, { 0xa8, 0x11, 0x5a, 0x7a, 0x9b, 0xc2, 0x32, 0xdf }}
24 
25 extern EFI_GUID gEfiHiiKeyBoardLayoutGuid;
26 
27 #endif
28