24 lines
825 B
C
24 lines
825 B
C
/** @file
|
|
LegacyBios Dependency Guid definition file
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2012, 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 _LEGACYBIOS_DEPENDENCY_H_
|
|
#define _LEGACYBIOS_DEPENDENCY_H_
|
|
|
|
#define LEGACYBIOS_DEPENDENCY_GUID \
|
|
{ 0xdf0c7744, 0xa1c2, 0x4f5b, { 0xb8, 0xd8, 0x86, 0xad, 0xe9, 0xf3, 0xa5, 0x46 }}
|
|
|
|
extern EFI_GUID gLegacyBiosDependencyGuid;
|
|
|
|
#endif
|