You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /** @file
  2. Terminal Device Path Vendor Guid.
  3. Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
  4. This program and the accompanying materials
  5. are licensed and made available under the terms and conditions of the BSD License
  6. which accompanies this distribution. The full text of the license may be found at
  7. http://opensource.org/licenses/bsd-license.php
  8. THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
  10. @par Revision Reference:
  11. GUIDs defined in UEFI 2.0 spec.
  12. **/
  13. #ifndef __PC_ANSI_H__
  14. #define __PC_ANSI_H__
  15. #define EFI_PC_ANSI_GUID \
  16. { \
  17. 0xe0c14753, 0xf9be, 0x11d2, {0x9a, 0x0c, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
  18. }
  19. #define EFI_VT_100_GUID \
  20. { \
  21. 0xdfa66065, 0xb419, 0x11d3, {0x9a, 0x2d, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
  22. }
  23. #define EFI_VT_100_PLUS_GUID \
  24. { \
  25. 0x7baec70b, 0x57e0, 0x4c76, {0x8e, 0x87, 0x2f, 0x9e, 0x28, 0x08, 0x83, 0x43 } \
  26. }
  27. #define EFI_VT_UTF8_GUID \
  28. { \
  29. 0xad15a0d6, 0x8bec, 0x4acf, {0xa0, 0x73, 0xd0, 0x1d, 0xe7, 0x7e, 0x2d, 0x88 } \
  30. }
  31. #define DEVICE_PATH_MESSAGING_UART_FLOW_CONTROL \
  32. { \
  33. 0x37499a9d, 0x542f, 0x4c89, {0xa0, 0x26, 0x35, 0xda, 0x14, 0x20, 0x94, 0xe4 } \
  34. }
  35. #define EFI_SAS_DEVICE_PATH_GUID \
  36. { \
  37. 0xd487ddb4, 0x008b, 0x11d9, {0xaf, 0xdc, 0x00, 0x10, 0x83, 0xff, 0xca, 0x4d } \
  38. }
  39. extern EFI_GUID gEfiPcAnsiGuid;
  40. extern EFI_GUID gEfiVT100Guid;
  41. extern EFI_GUID gEfiVT100PlusGuid;
  42. extern EFI_GUID gEfiVTUTF8Guid;
  43. extern EFI_GUID gEfiUartDevicePathGuid;
  44. extern EFI_GUID gEfiSasDevicePathGuid;
  45. #endif