1 // 2 // This file contains message strings for the OpenLDAP slapd service. 3 // 4 // This file should be compiled as follows 5 // mc -v slapdmsg.mc -r $(IntDir) 6 // rc /v /r $(IntDir)\slapdmsg.rc 7 // The mc (message compiler) command generates the .rc and .h files from this file. The 8 // rc (resource compiler) takes the .rc file and produces a .res file that can be linked 9 // with the final executable application. The application is then registered as a message 10 // source with by creating the appropriate entries in the system registry. 11 // 12 // 13 // Values are 32 bit values laid out as follows: 14 // 15 // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 16 // 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 17 // +---+-+-+-----------------------+-------------------------------+ 18 // |Sev|C|R| Facility | Code | 19 // +---+-+-+-----------------------+-------------------------------+ 20 // 21 // where 22 // 23 // Sev - is the severity code 24 // 25 // 00 - Success 26 // 01 - Informational 27 // 10 - Warning 28 // 11 - Error 29 // 30 // C - is the Customer code flag 31 // 32 // R - is a reserved bit 33 // 34 // Facility - is the facility code 35 // 36 // Code - is the facility's status code 37 // 38 // 39 // Define the facility codes 40 // 41 42 43 // 44 // Define the severity codes 45 // 46 47 48 // 49 // MessageId: MSG_SVC_STARTED 50 // 51 // MessageText: 52 // 53 // OpenLDAP service started. debuglevel=%1, conffile=%2, urls=%3 54 // 55 #define MSG_SVC_STARTED 0x40000500L 56 57 // 58 // MessageId: MSG_SVC_STOPPED 59 // 60 // MessageText: 61 // 62 // OpenLDAP service stopped. 63 // 64 #define MSG_SVC_STOPPED 0x40000501L 65 66