1 /** @file
2   This file defines the hob structure for system tables like ACPI, SMBIOS tables.
3 
4   Copyright (c) 2014 - 2019, Intel Corporation. All rights reserved.<BR>
5   SPDX-License-Identifier: BSD-2-Clause-Patent
6 
7 **/
8 
9 #ifndef __SYSTEM_TABLE_INFO_GUID_H__
10 #define __SYSTEM_TABLE_INFO_GUID_H__
11 
12 ///
13 /// System Table Information GUID
14 ///
15 extern EFI_GUID gUefiSystemTableInfoGuid;
16 
17 typedef struct {
18   UINT8     Revision;
19   UINT8     Reserved0[3];
20   UINT64    AcpiTableBase;
21   UINT32    AcpiTableSize;
22   UINT64    SmbiosTableBase;
23   UINT32    SmbiosTableSize;
24 } SYSTEM_TABLE_INFO;
25 
26 #endif
27