25 lines
798 B
C
25 lines
798 B
C
/** @file
|
|
GUIDs used for CR SOL
|
|
|
|
;******************************************************************************
|
|
;* 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 __INSYDE_CONSOLE_H__
|
|
#define __INSYDE_CONSOLE_H__
|
|
|
|
#define INSYDE_CONSOLE_DEVICE_GUID \
|
|
{ \
|
|
0x6fb1e2ec, 0x700b, 0x4787, 0xa5, 0xfe, 0x3f, 0x21, 0xed, 0xc8, 0x55, 0xc9 \
|
|
};
|
|
|
|
extern EFI_GUID gH2OCrConsoleDeviceGuid;
|
|
#endif
|