1 /** @file 2 GUID definition for TtyTerm terminal type. The TtyTerm terminal aims to 3 provide support for modern *nix terminals. 4 5 6 Copyright (c) 2015 Linaro Ltd. 7 This program and the accompanying materials are licensed and made 8 available under the terms and conditions of the BSD License that 9 accompanies this distribution. The full text of the license may be found 10 at http://opensource.org/licenses/bsd-license.php. 11 12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 14 15 **/ 16 17 #ifndef __TTYTERM_H__ 18 #define __TTYTERM_H__ 19 20 #define EFI_TTY_TERM_GUID \ 21 {0x7d916d80, 0x5bb1, 0x458c, {0xa4, 0x8f, 0xe2, 0x5f, 0xdd, 0x51, 0xef, 0x94 } } 22 23 extern EFI_GUID gEfiTtyTermGuid; 24 25 #endif 26