25 lines
793 B
C
25 lines
793 B
C
/** @file
|
|
Guid used to trigger event to Hot Key event.
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2015, Insyde Software Corp. All Rights Reserved.
|
|
;*
|
|
;* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
;* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
;* any part of this publication in any form, by any means, without the prior
|
|
;* written permission of Insyde Software Corporation.
|
|
;*
|
|
;******************************************************************************
|
|
*/
|
|
|
|
#ifndef _HOT_KEY_EVENT_H_
|
|
#define _HOT_KEY_EVENT_H_
|
|
|
|
#define H2O_STOP_HOT_KEY_GUID \
|
|
{0xb43db6fc, 0x0b92, 0x4ead, 0xa5, 0x90, 0xcb, 0xa6, 0xdb, 0x2a, 0xec, 0xcc}
|
|
|
|
extern EFI_GUID gH2OStopHotKeyGuid;
|
|
|
|
#endif
|
|
|