26 lines
823 B
C
26 lines
823 B
C
/** @file
|
|
DynamicHotKey.h
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2013, 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 _DYNAMIC_HOTKEY_GUID_H_
|
|
#define _DYNAMIC_HOTKEY_GUID_H_
|
|
|
|
#define DYNAMIC_HOTKEY_VARIABLE_GUID \
|
|
{ \
|
|
0xd4f0dfa6, 0x3623, 0x40ca, 0xb7, 0x27, 0xa8, 0xf1, 0x4a, 0x1b, 0xde, 0x66 \
|
|
}
|
|
|
|
extern EFI_GUID gDynamicHotKeyGuid;
|
|
|
|
#endif
|