mirror of
https://github.com/acpica/acpica/
synced 2025-01-15 22:09:17 +03:00
Support for External() declarations
date 2004.03.31.23.54.00; author rmoore1; state Exp;
This commit is contained in:
parent
32755cf16b
commit
b6e9e47312
@ -1,7 +1,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Name: acdisasm.h - AML disassembler
|
||||
* $Revision: 1.10 $
|
||||
* $Revision: 1.12 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
*
|
||||
* 1. Copyright Notice
|
||||
*
|
||||
* Some or all of this work - Copyright (c) 1999 - 2003, Intel Corp.
|
||||
* Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.
|
||||
* All rights reserved.
|
||||
*
|
||||
* 2. License
|
||||
@ -125,6 +125,14 @@
|
||||
#define BLOCK_BRACE 2
|
||||
#define BLOCK_COMMA_LIST 4
|
||||
|
||||
typedef struct acpi_external_list
|
||||
{
|
||||
char *Path;
|
||||
struct acpi_external_list *Next;
|
||||
|
||||
} ACPI_EXTERNAL_LIST;
|
||||
|
||||
extern ACPI_EXTERNAL_LIST *AcpiGbl_ExternalList;
|
||||
extern const char *AcpiGbl_IoDecode[2];
|
||||
extern const char *AcpiGbl_WordDecode[4];
|
||||
extern const char *AcpiGbl_ConsumeDecode[2];
|
||||
@ -473,4 +481,12 @@ AcpiDmVendorSmallDescriptor (
|
||||
UINT32 Level);
|
||||
|
||||
|
||||
/*
|
||||
* dmutils
|
||||
*/
|
||||
|
||||
void
|
||||
AcpiDmAddToExternalList (
|
||||
char *Path);
|
||||
|
||||
#endif /* __ACDISASM_H__ */
|
||||
|
Loading…
Reference in New Issue
Block a user