1 | /** @file
|
---|
2 | GUID for an event that is signaled on the first attempt to check for a keystroke
|
---|
3 | from the ConIn device.
|
---|
4 |
|
---|
5 | Copyright (c) 2012 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
6 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 |
|
---|
8 | **/
|
---|
9 |
|
---|
10 | #ifndef __CONNECT_CONIN_EVENT_GUID_H__
|
---|
11 | #define __CONNECT_CONIN_EVENT_GUID_H__
|
---|
12 |
|
---|
13 | #define CONNECT_CONIN_EVENT_GUID \
|
---|
14 | { 0xdb4e8151, 0x57ed, 0x4bed, { 0x88, 0x33, 0x67, 0x51, 0xb5, 0xd1, 0xa8, 0xd7 }}
|
---|
15 |
|
---|
16 | extern EFI_GUID gConnectConInEventGuid;
|
---|
17 |
|
---|
18 | #endif
|
---|