SystemTableInfoGuid.h 606 B

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