1 /* BEGIN INCLUDE FILE  ws_func.h */
 2 
 3 /* HISTORY COMMENTS:
 4   1) change(86-05-31,Westcott), approve(87-07-13,MCR7580),
 5      audit(87-07-13,Leskiw), install(87-08-07,MR12.1-1072):
 6      Created.
 7   2) change(86-10-24,ASmith), approve(87-07-13,MCR7580),
 8      audit(87-07-13,Leskiw), install(87-08-07,MR12.1-1072):
 9      Added I$CONNECT minor.
10                                                    END HISTORY COMMENTS */
11 
12 /* FUNCTION
13 
14 Defines the MOWSE functions numbers used by the software interrupt handler.
15 Equivalent include file ws_func.mac
16 */
17 
18 /* Application interrupts */
19 
20 #define I$EXECOM          2      /* execute command */
21 #define I$EXECAP          3      /* execute capability */
22 #define I$CRETINST        4      /* create instance */
23 #define I$DESTINST        5      /* destroy instance */
24 #define I$FINDNAME        6      /* find capability name */
25 #define I$FINDNUMB        7      /* find capability number */
26 #define I$GETTDATA        9      /* get terminal data */
27 #define I$PUTTDATA        10     /* put terminal data */
28 #define I$GETBGMES        11     /* get background message */
29 #define I$PUTBGMES        12     /* put background message */
30 #define I$SENDBG          13     /* send message to background */
31 #define I$PUTQUERY        13     /* put query message */
32 #define I$STATUS          14     /* status request/reply */
33 #define I$RESET           15     /* send reset or resume request */
34 #define I$SLEEP           16     /* put application to sleep */
35 #define I$DISCONNECT      17     /* disconnect request */
36 #define I$FOREBREAK       18     /* Foreground break */
37 #define I$SUSPEND         19     /* Suspend application */
38 #define I$CONNECT         20     /* Connect to application */
39 
40 /* END INCLUDE FILE ws_func.h */
41 ^Z