mirror of https://github.com/acidanthera/audk.git
20 lines
458 B
C
20 lines
458 B
C
/** @file
|
|
GUID used as HII Package list GUID in GenericBdsLib module.
|
|
|
|
Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef __BDS_LIB_HII_GUID_H__
|
|
#define __BDS_LIB_HII_GUID_H__
|
|
|
|
#define BDS_LIB_STRING_PACKAGE_GUID \
|
|
{ \
|
|
0x3b4d9b23, 0x95ac, 0x44f6, { 0x9f, 0xcd, 0xe, 0x95, 0x94, 0x58, 0x6c, 0x72 } \
|
|
}
|
|
|
|
extern EFI_GUID gBdsLibStringPackageGuid;
|
|
|
|
#endif
|