1 
 2 /* BEGIN INCLUDE FILE ws_error.h */
 3 
 4 /* HISTORY COMMENTS:
 5   1) change(86-06-01,Westcott), approve(87-07-13,MCR7580),
 6      audit(87-07-13,Leskiw), install(87-08-07,MR12.1-1072):
 7      Created.
 8   2) change(86-09-05,Flegel), approve(87-07-13,MCR7580),
 9      audit(87-07-13,Leskiw), install(87-08-07,MR12.1-1072):
10      Added WSINVTIM.
11                                                    END HISTORY COMMENTS */
12 
13 
14 /* : FUNCTION
15 Defines PC error codes, equivalent include file ws_error.mac
16 
17 Error codes between -1000 and -1200 are general
18                     -1201 and -1300 are PC only
19                     -1301 and -1400 are Multics only
20 */
21 
22 #define WSNOERR                 0       /* No error                     */
23 #define WSACTIVE                -1000   /* MOWSE is currently active    */
24 #define WSNOTACT                -1001   /* Mowse not active             */
25 #define WSINVSYS                -1002   /* Invalid system number        */
26 #define WSINVMCB                -1003   /* Invalid MCB pointer          */
27 #define WSINVNUM                -1005   /* Invalid capability number    */
28 #define WSSUSPND                -1006   /* Suspended                    */
29 #define WSERROR                 -1007   /* Some kind of error           */
30 #define WSINVMIN                -1008   /* Invalid minor capability     */
31 #define WSBUFOVR                -1009   /* Buffer Overflow              */
32 #define WSDISPEN                -1010   /* Disconnect pending           */
33 #define WSCNTCRE                -1011   /* couldn't create instance     */
34 #define WSINVNAM                -1012   /* Invalid capability name      */
35 #define WSINVTIM                -1013   /* Invalid sleep interval       */
36 #define WSNOSPND                -1014   /* Not suspended                */
37 #define WSSLPING                -1015   /* Already sleeping             */
38 #define WSNOTRES                -1016   /* MOWSE is not resident        */
39 #define WSNOMESS                -1201   /* No background message        */
40 #define WSINVBUF                -1202   /* Invalid buffer size          */
41 #define WSINVCAT                -1203   /* Invalid CAT entry            */
42 #define WSINVENM                -1301   /* Invalid entry name           */
43 #define WSINVCON                -1302   /* Invalid connect status       */
44 
45 /* END INCLUDE FILE  ws_error.h */
46