Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenerrmsg.h
Go to the documentation of this file.
00001 /************************************************************************* 00002 * 00003 * File: errmsg.msg 00004 * 00005 * Product: Ext2 FSD 00006 * 00007 * Module: Ext2 FSD Event Log Messages 00008 * 00009 * Description: 00010 * Contains error strings in a format understandable to the message compiler. 00011 * Please compile (using mc) with the -c option which will set the 00012 * "Customer" bit in all errors. 00013 * Use values beginning at 0xA000 (e.g. 0xA001) for the Ext2 FSD 00014 * errors. 00015 * Do NOT use %1 for insertion strings. The I/O manager assumes that 00016 * the first insertion string is the name of the driver/device. 00017 * 00018 * 00019 *************************************************************************/ 00020 // 00021 // Values are 32 bit values layed out as follows: 00022 // 00023 // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 00024 // 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 00025 // +---+-+-+-----------------------+-------------------------------+ 00026 // |Sev|C|R| Facility | Code | 00027 // +---+-+-+-----------------------+-------------------------------+ 00028 // 00029 // where 00030 // 00031 // Sev - is the severity code 00032 // 00033 // 00 - Success 00034 // 01 - Informational 00035 // 10 - Warning 00036 // 11 - Error 00037 // 00038 // C - is the Customer code flag 00039 // 00040 // R - is a reserved bit 00041 // 00042 // Facility - is the facility code 00043 // 00044 // Code - is the facility's status code 00045 // 00046 // 00047 // Define the facility codes 00048 // 00049 00050 00051 // 00052 // Define the severity codes 00053 // 00054 #define STATUS_SEVERITY_WARNING 0x2 00055 #define STATUS_SEVERITY_SUCCESS 0x0 00056 #define STATUS_SEVERITY_INFORMATIONAL 0x1 00057 #define STATUS_SEVERITY_ERROR 0x3 00058 00059 00060 // 00061 // MessageId: EXT2_ERROR_INTERNAL_ERROR 00062 // 00063 // MessageText: 00064 // 00065 // The Ext2 FSD encountered an internal error. Please check log data information. 00066 // 00067 #define EXT2_ERROR_INTERNAL_ERROR ((ULONG)0xE004A001L) 00068 Generated on Sat May 26 2012 04:26:17 for ReactOS by
1.7.6.1
|