1 /** @file 2 * 3 * Copyright (c) 2016, Hisilicon Limited. All rights reserved. 4 * Copyright (c) 2016, Linaro Limited. All rights reserved. 5 * 6 * This program and the accompanying materials 7 * are licensed and made available under the terms and conditions of the BSD License 8 * which accompanies this distribution. The full text of the license may be found at 9 * http://opensource.org/licenses/bsd-license.php 10 * 11 * THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13 * 14 **/ 15 16 #ifndef _VERSION_INFO_HOB_GUID_H_ 17 #define _VERSION_INFO_HOB_GUID_H_ 18 19 // {0E13A14C-859C-4f22-82BD-180EE14212BF} 20 #define VERSION_INFO_HOB_GUID \ 21 {0xe13a14c, 0x859c, 0x4f22, {0x82, 0xbd, 0x18, 0xe, 0xe1, 0x42, 0x12, 0xbf}} 22 23 extern GUID gVersionInfoHobGuid; 24 25 #pragma pack(1) 26 27 typedef struct { 28 EFI_TIME BuildTime; 29 CHAR16 String[1]; 30 } VERSION_INFO; 31 32 #pragma pack() 33 34 #endif 35 36