aslmessages.c (9a696dc6bb0e8e783dfd169c8299e1f33aac2935) | aslmessages.c (44b0f624aee0d43179bf3874c70e03b6ae49a4db) |
---|---|
1/****************************************************************************** 2 * 3 * Module Name: aslmessages.c - Compiler error/warning message strings 4 * 5 *****************************************************************************/ 6 7/****************************************************************************** 8 * --- 339 unchanged lines hidden (view full) --- 348/* ASL_MSG_ARG_AS_LOCAL_NOT_USED */ "Method Argument (as a local) is set but never used", 349/* ASL_MSG_ARG_NOT_USED */ "Method Argument is never used", 350/* ASL_MSG_CONSTANT_REQUIRED */ "Non-reducible expression", 351/* ASL_MSG_CROSS_TABLE_SCOPE */ "Illegal open scope on external object from within DSDT", 352/* ASL_MSG_EXCEPTION_NOT_RECEIVED */ "Expected remark, warning, or error did not occur. Message ID:", 353/* ASL_MSG_NULL_RESOURCE_TEMPLATE */ "Empty Resource Template (END_TAG only)", 354/* ASL_MSG_FOUND_HERE */ "Original name creation/declaration below: ", 355/* ASL_MSG_ILLEGAL_RECURSION */ "Illegal recursive call to method that creates named objects", | 1/****************************************************************************** 2 * 3 * Module Name: aslmessages.c - Compiler error/warning message strings 4 * 5 *****************************************************************************/ 6 7/****************************************************************************** 8 * --- 339 unchanged lines hidden (view full) --- 348/* ASL_MSG_ARG_AS_LOCAL_NOT_USED */ "Method Argument (as a local) is set but never used", 349/* ASL_MSG_ARG_NOT_USED */ "Method Argument is never used", 350/* ASL_MSG_CONSTANT_REQUIRED */ "Non-reducible expression", 351/* ASL_MSG_CROSS_TABLE_SCOPE */ "Illegal open scope on external object from within DSDT", 352/* ASL_MSG_EXCEPTION_NOT_RECEIVED */ "Expected remark, warning, or error did not occur. Message ID:", 353/* ASL_MSG_NULL_RESOURCE_TEMPLATE */ "Empty Resource Template (END_TAG only)", 354/* ASL_MSG_FOUND_HERE */ "Original name creation/declaration below: ", 355/* ASL_MSG_ILLEGAL_RECURSION */ "Illegal recursive call to method that creates named objects", |
356/* ASL_MSG_PLACE_HOLDER_00 */ "", /* TODO: fill in this slot with a new error message */ 357/* ASL_MSG_PLACE_HOLDER_01 */ "", /* TODO: fill in this slot with a new error message */ | 356/* ASL_MSG_DUPLICATE_INPUT_FILE */ "Duplicate input files detected:", 357/* ASL_MSG_WARNING_AS_ERROR */ "Warnings detected during compilation", |
358/* ASL_MSG_OEM_TABLE_ID */ "Invalid OEM Table ID", 359/* ASL_MSG_OEM_ID */ "Invalid OEM ID", 360/* ASL_MSG_UNLOAD */ "Unload is not supported by all operating systems", 361/* ASL_MSG_OFFSET */ "Unnecessary/redundant use of Offset operator", 362/* ASL_MSG_LONG_SLEEP */ "Very long Sleep, greater than 1 second", 363/* ASL_MSG_PREFIX_NOT_EXIST */ "One or more prefix Scopes do not exist", 364/* ASL_MSG_NAMEPATH_NOT_EXIST */ "One or more objects within the Pathname do not exist", 365/* ASL_MSG_REGION_LENGTH */ "Operation Region declared with zero length", | 358/* ASL_MSG_OEM_TABLE_ID */ "Invalid OEM Table ID", 359/* ASL_MSG_OEM_ID */ "Invalid OEM ID", 360/* ASL_MSG_UNLOAD */ "Unload is not supported by all operating systems", 361/* ASL_MSG_OFFSET */ "Unnecessary/redundant use of Offset operator", 362/* ASL_MSG_LONG_SLEEP */ "Very long Sleep, greater than 1 second", 363/* ASL_MSG_PREFIX_NOT_EXIST */ "One or more prefix Scopes do not exist", 364/* ASL_MSG_NAMEPATH_NOT_EXIST */ "One or more objects within the Pathname do not exist", 365/* ASL_MSG_REGION_LENGTH */ "Operation Region declared with zero length", |
366/* ASL_MSG_TEMPORARY_OBJECT */ "Object is created temporarily in another method and cannot be accessed" | 366/* ASL_MSG_TEMPORARY_OBJECT */ "Object is created temporarily in another method and cannot be accessed", 367/* ASL_MSG_UNDEFINED_EXTERNAL */ "Named object was declared external but the actual definition does not exist" |
367}; 368 369/* Table compiler */ 370 371const char *AslTableCompilerMsgs [] = 372{ 373/* ASL_MSG_BUFFER_ELEMENT */ "Invalid element in buffer initializer list", 374/* ASL_MSG_DIVIDE_BY_ZERO */ "Expression contains divide-by-zero", --- 164 unchanged lines hidden --- | 368}; 369 370/* Table compiler */ 371 372const char *AslTableCompilerMsgs [] = 373{ 374/* ASL_MSG_BUFFER_ELEMENT */ "Invalid element in buffer initializer list", 375/* ASL_MSG_DIVIDE_BY_ZERO */ "Expression contains divide-by-zero", --- 164 unchanged lines hidden --- |