24 lines
783 B
C
24 lines
783 B
C
/** @file
|
|
;******************************************************************************
|
|
;* Copyright (c) 2016, 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 __ESRT_CRB_FIRMWARE_GUID_H__
|
|
#define __ESRT_CRB_FIRMWARE_GUID_H__
|
|
|
|
#define ESRT_CRB_FIRMWARE_GUID \
|
|
{ \
|
|
0x12b99262, 0x648c, 0x4365, 0xba, 0xfd, 0xeb, 0x86, 0x9f, 0xb7, 0xeb, 0x47 \
|
|
};
|
|
|
|
extern EFI_GUID gEsrtCrbFirmwareGuid;
|
|
|
|
#endif
|