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