mirror of https://github.com/acidanthera/audk.git
26 lines
798 B
C
26 lines
798 B
C
/** @file
|
|
GUID definition for TtyTerm terminal type. The TtyTerm terminal aims to
|
|
provide support for modern *nix terminals.
|
|
|
|
|
|
Copyright (c) 2015 Linaro Ltd.
|
|
This program and the accompanying materials are licensed and made
|
|
available under the terms and conditions of the BSD License that
|
|
accompanies this distribution. The full text of the license may be found
|
|
at http://opensource.org/licenses/bsd-license.php.
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
**/
|
|
|
|
#ifndef __TTYTERM_H__
|
|
#define __TTYTERM_H__
|
|
|
|
#define EFI_TTY_TERM_GUID \
|
|
{0x7d916d80, 0x5bb1, 0x458c, {0xa4, 0x8f, 0xe2, 0x5f, 0xdd, 0x51, 0xef, 0x94 } }
|
|
|
|
extern EFI_GUID gEfiTtyTermGuid;
|
|
|
|
#endif
|