24 lines
836 B
C
24 lines
836 B
C
/** @file
|
|
Defination GUID of H2O RAM Disk guid
|
|
|
|
;******************************************************************************
|
|
;* 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 __H2O_RAM_DISK_GUID__
|
|
#define __H2O_RAM_DISK_GUID__
|
|
|
|
#define H2O_RAM_DISK_GUID \
|
|
{ 0x06ED4DD0, 0xFF78, 0x11D3, { 0xBD, 0xC4, 0x00, 0xA0, 0xC9, 0x40, 0x53, 0xD1 }}
|
|
|
|
extern EFI_GUID gH2ORamDiskGuid;
|
|
|
|
#endif
|