00001 // 00002 // Values are 32 bit values layed out as follows: 00003 // 00004 // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 00005 // 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 00006 // +---+-+-+-----------------------+-------------------------------+ 00007 // |Sev|C|R| Facility | Code | 00008 // +---+-+-+-----------------------+-------------------------------+ 00009 // 00010 // where 00011 // 00012 // Sev - is the severity code 00013 // 00014 // 00 - Success 00015 // 01 - Informational 00016 // 10 - Warning 00017 // 11 - Error 00018 // 00019 // C - is the Customer code flag 00020 // 00021 // R - is a reserved bit 00022 // 00023 // Facility - is the facility code 00024 // 00025 // Code - is the facility's status code 00026 // 00027 // 00028 // Define the facility codes 00029 // 00030 00031 00032 // 00033 // Define the severity codes 00034 // 00035 00036 00037 // 00038 // MessageId: EVMSG_INSTALLED 00039 // 00040 // MessageText: 00041 // 00042 // The %1 service was installed. 00043 // 00044 #define EVMSG_INSTALLED 0x00000064L 00045 00046 // 00047 // MessageId: EVMSG_REMOVED 00048 // 00049 // MessageText: 00050 // 00051 // The %1 service was removed. 00052 // 00053 #define EVMSG_REMOVED 0x00000065L 00054 00055 // 00056 // MessageId: EVMSG_NOTREMOVED 00057 // 00058 // MessageText: 00059 // 00060 // The %1 service could not be removed. 00061 // 00062 #define EVMSG_NOTREMOVED 0x00000066L 00063 00064 // 00065 // MessageId: EVMSG_CTRLHANDLERNOTINSTALLED 00066 // 00067 // MessageText: 00068 // 00069 // The control handler could not be installed. 00070 // 00071 #define EVMSG_CTRLHANDLERNOTINSTALLED 0x00000067L 00072 00073 // 00074 // MessageId: EVMSG_FAILEDINIT 00075 // 00076 // MessageText: 00077 // 00078 // The initialization process failed. 00079 // 00080 #define EVMSG_FAILEDINIT 0x00000068L 00081 00082 // 00083 // MessageId: EVMSG_STARTED 00084 // 00085 // MessageText: 00086 // 00087 // The service was started. 00088 // 00089 #define EVMSG_STARTED 0x00000069L 00090 00091 // 00092 // MessageId: EVMSG_BADREQUEST 00093 // 00094 // MessageText: 00095 // 00096 // The service received an unsupported request. 00097 // 00098 #define EVMSG_BADREQUEST 0x0000006AL 00099 00100 // 00101 // MessageId: EVMSG_DEBUG 00102 // 00103 // MessageText: 00104 // 00105 // Debug: %1 00106 // 00107 #define EVMSG_DEBUG 0x0000006BL 00108 00109 // 00110 // MessageId: EVMSG_STOPPED 00111 // 00112 // MessageText: 00113 // 00114 // The service was stopped. 00115 // 00116 #define EVMSG_STOPPED 0x0000006CL 00117