| 1 |
sysadm |
1.1 |
//
|
| 2 |
|
|
// Values are 32 bit values layed out as follows:
|
| 3 |
|
|
//
|
| 4 |
|
|
// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
|
| 5 |
|
|
// 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
|
| 6 |
|
|
// +---+-+-+-----------------------+-------------------------------+
|
| 7 |
|
|
// |Sev|C|R| Facility | Code |
|
| 8 |
|
|
// +---+-+-+-----------------------+-------------------------------+
|
| 9 |
|
|
//
|
| 10 |
|
|
// where
|
| 11 |
|
|
//
|
| 12 |
|
|
// Sev - is the severity code
|
| 13 |
|
|
//
|
| 14 |
|
|
// 00 - Success
|
| 15 |
|
|
// 01 - Informational
|
| 16 |
|
|
// 10 - Warning
|
| 17 |
|
|
// 11 - Error
|
| 18 |
|
|
//
|
| 19 |
|
|
// C - is the Customer code flag
|
| 20 |
|
|
//
|
| 21 |
|
|
// R - is a reserved bit
|
| 22 |
|
|
//
|
| 23 |
|
|
// Facility - is the facility code
|
| 24 |
|
|
//
|
| 25 |
|
|
// Code - is the facility's status code
|
| 26 |
|
|
//
|
| 27 |
|
|
//
|
| 28 |
|
|
// Define the facility codes
|
| 29 |
|
|
//
|
| 30 |
|
|
|
| 31 |
|
|
|
| 32 |
|
|
//
|
| 33 |
|
|
// Define the severity codes
|
| 34 |
|
|
//
|
| 35 |
|
|
|
| 36 |
|
|
|
| 37 |
|
|
//
|
| 38 |
|
|
// MessageId: EVMSG_INSTALLED
|
| 39 |
|
|
//
|
| 40 |
|
|
// MessageText:
|
| 41 |
|
|
//
|
| 42 |
|
|
// The %1 service was installed.
|
| 43 |
|
|
//
|
| 44 |
|
|
#define EVMSG_INSTALLED 0x00000064L
|
| 45 |
|
|
|
| 46 |
|
|
//
|
| 47 |
|
|
// MessageId: EVMSG_REMOVED
|
| 48 |
|
|
//
|
| 49 |
|
|
// MessageText:
|
| 50 |
|
|
//
|
| 51 |
|
|
// The %1 service was removed.
|
| 52 |
|
|
//
|
| 53 |
|
|
#define EVMSG_REMOVED 0x00000065L
|
| 54 |
|
|
|
| 55 |
|
|
//
|
| 56 |
|
|
// MessageId: EVMSG_NOTREMOVED
|
| 57 |
|
|
//
|
| 58 |
|
|
// MessageText:
|
| 59 |
|
|
//
|
| 60 |
|
|
// The %1 service could not be removed.
|
| 61 |
|
|
//
|
| 62 |
|
|
#define EVMSG_NOTREMOVED 0x00000066L
|
| 63 |
|
|
|
| 64 |
|
|
//
|
| 65 |
|
|
// MessageId: EVMSG_CTRLHANDLERNOTINSTALLED
|
| 66 |
|
|
//
|
| 67 |
|
|
// MessageText:
|
| 68 |
|
|
//
|
| 69 |
|
|
// The control handler could not be installed.
|
| 70 |
|
|
//
|
| 71 |
|
|
#define EVMSG_CTRLHANDLERNOTINSTALLED 0x00000067L
|
| 72 |
|
|
|
| 73 |
|
|
//
|
| 74 |
|
|
// MessageId: EVMSG_FAILEDINIT
|
| 75 |
|
|
//
|
| 76 |
|
|
// MessageText:
|
| 77 |
|
|
//
|
| 78 |
|
|
// The initialization process failed.
|
| 79 |
|
|
//
|
| 80 |
|
|
#define EVMSG_FAILEDINIT 0x00000068L
|
| 81 |
|
|
|
| 82 |
|
|
//
|
| 83 |
|
|
// MessageId: EVMSG_STARTED
|
| 84 |
|
|
//
|
| 85 |
|
|
// MessageText:
|
| 86 |
|
|
//
|
| 87 |
|
|
// The service was started.
|
| 88 |
|
|
//
|
| 89 |
|
|
#define EVMSG_STARTED 0x00000069L
|
| 90 |
|
|
|
| 91 |
|
|
//
|
| 92 |
|
|
// MessageId: EVMSG_BADREQUEST
|
| 93 |
|
|
//
|
| 94 |
|
|
// MessageText:
|
| 95 |
|
|
//
|
| 96 |
|
|
// The service received an unsupported request.
|
| 97 |
|
|
//
|
| 98 |
|
|
#define EVMSG_BADREQUEST 0x0000006AL
|
| 99 |
|
|
|
| 100 |
|
|
//
|
| 101 |
|
|
// MessageId: EVMSG_DEBUG
|
| 102 |
|
|
//
|
| 103 |
|
|
// MessageText:
|
| 104 |
|
|
//
|
| 105 |
|
|
// Debug: %1
|
| 106 |
|
|
//
|
| 107 |
|
|
#define EVMSG_DEBUG 0x0000006BL
|
| 108 |
|
|
|
| 109 |
|
|
//
|
| 110 |
|
|
// MessageId: EVMSG_STOPPED
|
| 111 |
|
|
//
|
| 112 |
|
|
// MessageText:
|
| 113 |
|
|
//
|
| 114 |
|
|
// The service was stopped.
|
| 115 |
|
|
//
|
| 116 |
|
|
#define EVMSG_STOPPED 0x0000006CL
|
| 117 |
|
|
|