mirror of https://github.com/acidanthera/audk.git
18 lines
455 B
C
18 lines
455 B
C
/** @file
|
|
GUID to specify which FFS file to store the updated capsule data.
|
|
|
|
Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef __UPDATE_DATA_FILE_GUID_H__
|
|
#define __UPDATE_DATA_FILE_GUID_H__
|
|
|
|
#define EFI_UPDATE_DATA_FILE_GUID \
|
|
{ 0x283fa2ee, 0x532c, 0x484d, { 0x93, 0x83, 0x9f, 0x93, 0xb3, 0x6f, 0xb, 0x7e } }
|
|
|
|
extern GUID gEfiUpdateDataFileGuid;
|
|
|
|
#endif
|