Blame | Last modification | View Log
//// Values are 32 bit values layed out as follows://// 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1// 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// +---+-+-+-----------------------+-------------------------------+// |Sev|C|R| Facility | Code |// +---+-+-+-----------------------+-------------------------------+//// where//// Sev - is the severity code//// 00 - Success// 01 - Informational// 10 - Warning// 11 - Error//// C - is the Customer code flag//// R - is a reserved bit//// Facility - is the facility code//// Code - is the facility's status code////// Define the facility codes////// Define the severity codes////// MessageId: CNT_MSG_STARTED//// MessageText://// "%1" started successfully.//#define CNT_MSG_STARTED 0x40000001L//// MessageId: CNT_MSG_INSTALLED//// MessageText://// "%1" was successfully installed.//#define CNT_MSG_INSTALLED 0x40000002L//// MessageId: CNT_MSG_UNINSTALLED//// MessageText://// "%1" was successfully uninstalled.//#define CNT_MSG_UNINSTALLED 0x40000003L//// MessageId: CNT_MSG_STOPPED//// MessageText://// "%1" stopped successfully.//#define CNT_MSG_STOPPED 0x40000004L//// MessageId: CNT_MSG_SHUTDOWN//// MessageText://// "%1" was successfully shutdown.//#define CNT_MSG_SHUTDOWN 0x40000005L//// MessageId: CNT_MSG_ERRORSTRING//// MessageText://// %1 [%2].//#define CNT_MSG_ERRORSTRING 0x40000006L//// MessageId: CNT_MSG_FULLSTRING//// MessageText://// %1.//#define CNT_MSG_FULLSTRING 0x40000007L//// MessageId: CNT_MSG_FULLSTRING1//// MessageText://// %1.//#define CNT_MSG_FULLSTRING1 0x40000008L//// MessageId: CNT_MSG_FULLSTRING2//// MessageText://// %1.//#define CNT_MSG_FULLSTRING2 0x40000009L//// MessageId: CNT_MSG_FULLSTRING3//// MessageText://// %1.//#define CNT_MSG_FULLSTRING3 0x4000000AL//// MessageId: CNT_MSG_FULLSTRING4//// MessageText://// %1.//#define CNT_MSG_FULLSTRING4 0x4000000BL//// MessageId: CNT_MSG_FULLSTRING5//// MessageText://// %1.//#define CNT_MSG_FULLSTRING5 0x4000000CL//// MessageId: CNT_MSG_FULLSTRING6//// MessageText://// %1.//#define CNT_MSG_FULLSTRING6 0x4000000DL//// MessageId: CNT_MSG_FULLSTRING7//// MessageText://// %1.//#define CNT_MSG_FULLSTRING7 0x4000000EL//// MessageId: CNT_MSG_FULLSTRING8//// MessageText://// %1.//#define CNT_MSG_FULLSTRING8 0x4000000FL//// MessageId: CNT_MSG_FULLSTRING9//// MessageText://// %1.//#define CNT_MSG_FULLSTRING9 0x40000010L