ICP  1
isisicp_extMC.h
Go to the documentation of this file.
1 #ifndef __ICP_MESSAGES_H__
2 #define __ICP_MESSAGES_H__
3 
4 //
5 // Values are 32 bit values laid out as follows:
6 //
7 // 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
8 // 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
9 // +---+-+-+-----------------------+-------------------------------+
10 // |Sev|C|R| Facility | Code |
11 // +---+-+-+-----------------------+-------------------------------+
12 //
13 // where
14 //
15 // Sev - is the severity code
16 //
17 // 00 - Success
18 // 01 - Informational
19 // 10 - Warning
20 // 11 - Error
21 //
22 // C - is the Customer code flag
23 //
24 // R - is a reserved bit
25 //
26 // Facility - is the facility code
27 //
28 // Code - is the facility's status code
29 //
30 //
31 // Define the facility codes
32 //
33 
34 
35 //
36 // Define the severity codes
37 //
38 
39 
40 //
41 // MessageId: ICP_MSG_SUCCESS
42 //
43 // MessageText:
44 //
45 // %1
46 //
47 #define ICP_MSG_SUCCESS 0x00000001L
48 
49 //
50 // MessageId: ICP_MSG_INFORMATIONAL
51 //
52 // MessageText:
53 //
54 // %1
55 //
56 #define ICP_MSG_INFORMATIONAL 0x40000002L
57 
58 //
59 // MessageId: ICP_MSG_WARNING
60 //
61 // MessageText:
62 //
63 // %1
64 //
65 #define ICP_MSG_WARNING 0x80000003L
66 
67 //
68 // MessageId: ICP_MSG_ERROR
69 //
70 // MessageText:
71 //
72 // %1
73 //
74 #define ICP_MSG_ERROR 0xC0000004L
75 
76 
77 #endif /* __ICP_MESSAGES_H__ */