1314879Simp/** @file
2314879Simp  Terminal Device Path Vendor Guid.
3314879Simp
4314879Simp  Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
5314879Simp  This program and the accompanying materials
6314879Simp  are licensed and made available under the terms and conditions of the BSD License
7314879Simp  which accompanies this distribution.  The full text of the license may be found at
8314879Simp  http://opensource.org/licenses/bsd-license.php
9314879Simp
10314879Simp  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11314879Simp  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12314879Simp
13314879Simp  @par Revision Reference:
14314879Simp  GUIDs defined in UEFI 2.0 spec.
15314879Simp
16314879Simp**/
17314879Simp
18314879Simp#ifndef __PC_ANSI_H__
19314879Simp#define __PC_ANSI_H__
20314879Simp
21314879Simp#define EFI_PC_ANSI_GUID \
22314879Simp  { \
23314879Simp    0xe0c14753, 0xf9be, 0x11d2, {0x9a, 0x0c, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
24314879Simp  }
25314879Simp
26314879Simp#define EFI_VT_100_GUID \
27314879Simp  { \
28314879Simp    0xdfa66065, 0xb419, 0x11d3, {0x9a, 0x2d, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
29314879Simp  }
30314879Simp
31314879Simp#define EFI_VT_100_PLUS_GUID \
32314879Simp  { \
33314879Simp    0x7baec70b, 0x57e0, 0x4c76, {0x8e, 0x87, 0x2f, 0x9e, 0x28, 0x08, 0x83, 0x43 } \
34314879Simp  }
35314879Simp
36314879Simp#define EFI_VT_UTF8_GUID \
37314879Simp  { \
38314879Simp    0xad15a0d6, 0x8bec, 0x4acf, {0xa0, 0x73, 0xd0, 0x1d, 0xe7, 0x7e, 0x2d, 0x88 } \
39314879Simp  }
40314879Simp
41314879Simp#define DEVICE_PATH_MESSAGING_UART_FLOW_CONTROL \
42314879Simp  { \
43314879Simp    0x37499a9d, 0x542f, 0x4c89, {0xa0, 0x26, 0x35, 0xda, 0x14, 0x20, 0x94, 0xe4 } \
44314879Simp  }
45314879Simp
46314879Simp#define EFI_SAS_DEVICE_PATH_GUID \
47314879Simp  { \
48314879Simp    0xd487ddb4, 0x008b, 0x11d9, {0xaf, 0xdc, 0x00, 0x10, 0x83, 0xff, 0xca, 0x4d } \
49314879Simp  }
50314879Simp
51314879Simpextern EFI_GUID gEfiPcAnsiGuid;
52314879Simpextern EFI_GUID gEfiVT100Guid;
53314879Simpextern EFI_GUID gEfiVT100PlusGuid;
54314879Simpextern EFI_GUID gEfiVTUTF8Guid;
55314879Simpextern EFI_GUID gEfiUartDevicePathGuid;
56314879Simpextern EFI_GUID gEfiSasDevicePathGuid;
57314879Simp
58314879Simp#endif
59