30 lines
856 B
C
30 lines
856 B
C
/** @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.
|
|
;*
|
|
;******************************************************************************
|
|
*/
|
|
|
|
/**
|
|
|
|
GUID to identify Emu Pei phase has executed.
|
|
|
|
**/
|
|
|
|
#ifndef __EMU_PEI_MARK_GUID__
|
|
#define __EMU_PEI_MARK_GUID__
|
|
|
|
#define EMU_PEI_MARK_GUID \
|
|
{ 0xD56FF7F0, 0x8358, 0x4352, {0xBC, 0x87, 0xE8, 0x1B, 0xD2, 0x52, 0x45, 0x72} }
|
|
|
|
extern EFI_GUID gEmuPeiMarkGuid;
|
|
|
|
|
|
#endif
|