25 lines
811 B
C
25 lines
811 B
C
/** @file
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2014, 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 _CONSOLE_OUT_DEVICES_STARTED_H_
|
|
#define _CONSOLE_OUT_DEVICES_STARTED_H_
|
|
|
|
#define CONSOLE_OUT_DEVICES_STARTED_PROTOCOL_GUID \
|
|
{ \
|
|
0xef9a3971, 0xc1a0, 0x4a93, 0xbd, 0x40, 0x5a, 0xa1, 0x65, 0xf2, 0xdc, 0x3a \
|
|
}
|
|
|
|
extern EFI_GUID gConOutDevStartedProtocolGuid;
|
|
|
|
#endif
|