diff options
Diffstat (limited to 'include/aclocal.h')
-rw-r--r-- | include/aclocal.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/aclocal.h b/include/aclocal.h index 99955c3..2a06892 100644 --- a/include/aclocal.h +++ b/include/aclocal.h @@ -493,6 +493,23 @@ typedef union acpi_predefined_info } ACPI_PREDEFINED_INFO; + +/* Data block used during object validation */ + +typedef struct acpi_predefined_data +{ + char *Pathname; + const ACPI_PREDEFINED_INFO *Predefined; + UINT32 Flags; + UINT8 NodeFlags; + +} ACPI_PREDEFINED_DATA; + +/* Defines for Flags field above */ + +#define ACPI_OBJECT_REPAIRED 1 + + /* * Bitmapped return value types * Note: the actual data types must be contiguous, a loop in nspredef.c |