Deleted Added
sdiff udiff text old ( 126372 ) new ( 128212 )
full compact
1/******************************************************************************
2 *
3 * Name: acdisasm.h - AML disassembler
4 * $Revision: 12 $
5 *
6 *****************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.

--- 107 unchanged lines hidden (view full) ---

120#include "amlresrc.h"
121
122
123#define BLOCK_NONE 0
124#define BLOCK_PAREN 1
125#define BLOCK_BRACE 2
126#define BLOCK_COMMA_LIST 4
127
128typedef struct acpi_external_list
129{
130 char *Path;
131 struct acpi_external_list *Next;
132
133} ACPI_EXTERNAL_LIST;
134
135extern ACPI_EXTERNAL_LIST *AcpiGbl_ExternalList;
136extern const char *AcpiGbl_IoDecode[2];
137extern const char *AcpiGbl_WordDecode[4];
138extern const char *AcpiGbl_ConsumeDecode[2];
139extern const char *AcpiGbl_MinDecode[2];
140extern const char *AcpiGbl_MaxDecode[2];
141extern const char *AcpiGbl_DECDecode[2];
142extern const char *AcpiGbl_RNGDecode[4];
143extern const char *AcpiGbl_MEMDecode[4];

--- 332 unchanged lines hidden (view full) ---

476
477void
478AcpiDmVendorSmallDescriptor (
479 ASL_SMALL_VENDOR_DESC *Resource,
480 UINT32 Length,
481 UINT32 Level);
482
483
484/*
485 * dmutils
486 */
487
488void
489AcpiDmAddToExternalList (
490 char *Path);
491
492#endif /* __ACDISASM_H__ */