1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| /** @file
| *
| * Copyright (c) 2016, Hisilicon Limited. All rights reserved.
| * Copyright (c) 2016, Linaro Limited. All rights reserved.
| *
| * SPDX-License-Identifier: BSD-2-Clause-Patent
| *
| **/
|
| #ifndef _VERSION_INFO_HOB_GUID_H_
| #define _VERSION_INFO_HOB_GUID_H_
|
| // {0E13A14C-859C-4f22-82BD-180EE14212BF}
| #define VERSION_INFO_HOB_GUID \
| {0xe13a14c, 0x859c, 0x4f22, {0x82, 0xbd, 0x18, 0xe, 0xe1, 0x42, 0x12, 0xbf}}
|
| extern GUID gVersionInfoHobGuid;
|
| #pragma pack(1)
|
| typedef struct {
| EFI_TIME BuildTime;
| CHAR16 String[1];
| } VERSION_INFO;
|
| #pragma pack()
|
| #endif
|
|
|