diff options
Diffstat (limited to 'source/compiler/asltypes.h')
-rw-r--r-- | source/compiler/asltypes.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/source/compiler/asltypes.h b/source/compiler/asltypes.h index 7e3bd0a..b9f4fbe 100644 --- a/source/compiler/asltypes.h +++ b/source/compiler/asltypes.h @@ -133,6 +133,8 @@ typedef struct asl_file_info { FILE *Handle; char *Filename; + const char *ShortDescription; + const char *Description; } ASL_FILE_INFO; @@ -146,14 +148,14 @@ typedef struct asl_file_status /* * File types. Note: Any changes to this table must also be reflected - * in the AslFileTypeNames array. + * in the Gbl_Files array. */ typedef enum { ASL_FILE_STDOUT = 0, ASL_FILE_STDERR, - ASL_FILE_INPUT, /* Don't move these first 3 file types */ - ASL_FILE_AML_OUTPUT, + ASL_FILE_INPUT, + ASL_FILE_AML_OUTPUT, /* Don't move these first 4 file types */ ASL_FILE_SOURCE_OUTPUT, ASL_FILE_PREPROCESSOR, ASL_FILE_LISTING_OUTPUT, |