]> git.proxmox.com Git - mirror_edk2.git/blob - CorebootModulePkg/Include/Guid/SystemTableInfoGuid.h
CorebootModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / CorebootModulePkg / Include / Guid / SystemTableInfoGuid.h
1 /** @file
2 This file defines the hob structure for system tables like ACPI, SMBIOS tables.
3
4 Copyright (c) 2014, 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 UINT64 AcpiTableBase;
19 UINT32 AcpiTableSize;
20 UINT64 SmbiosTableBase;
21 UINT32 SmbiosTableSize;
22 } SYSTEM_TABLE_INFO;
23
24 #endif