mirror of https://github.com/acidanthera/audk.git
24 lines
984 B
C
24 lines
984 B
C
/** @file
|
|
Guid is EDKII DxeCore moudle GUID.
|
|
|
|
Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
|
|
This program and the accompanying materials
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
**/
|
|
|
|
#ifndef __DXE_CORE_FILE_NAME__
|
|
#define __DXE_CORE_FILE_NAME__
|
|
|
|
#define DXE_CORE_FILE_NAME_GUID \
|
|
{ 0xD6A2CB7F, 0x6A18, 0x4e2f, {0xB4, 0x3B, 0x99, 0x20, 0xA7, 0x33, 0x70, 0x0A }}
|
|
|
|
extern EFI_GUID gDxeCoreFileNameGuid;
|
|
|
|
#endif
|