blob: 56c2f9d99bf3e8e7fd4d70c6b6066b2e9a408ce3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/** @file
UEFI ACPI Data Table Definition.
Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#ifndef __UEFI_ACPI_DATA_TABLE_H__
#define __UEFI_ACPI_DATA_TABLE_H__
#include <IndustryStandard/Acpi.h>
#pragma pack(1)
typedef struct {
EFI_ACPI_DESCRIPTION_HEADER Header;
GUID Identifier;
UINT16 DataOffset;
} EFI_ACPI_DATA_TABLE;
#pragma pack()
#endif
|