/* * * Define generic codes for CLI command verbs. */ #ifndef _CLIVERBDEF_H #define _CLIVERBDEF_H /* Define verb generic codes */ #define CLI$K_VERB_ALLO 1 /* allocate */ #define CLI$K_VERB_ANAL 2 /* analize */ #define CLI$K_VERB_ASSI 3 /* assign */ #define CLI$K_VERB_BASI 4 /* basic */ #define CLI$K_VERB_BLIS 5 /* bliss */ #define CLI$K_VERB_COBO 6 /* cobol */ #define CLI$K_VERB_CONT 7 /* continue */ #define CLI$K_VERB_COPY 8 /* copy */ #define CLI$K_VERB_CREA 9 /* create */ #define CLI$K_VERB_DATA 10 /* data */ #define CLI$K_VERB_DEAL 11 /* deallocate */ #define CLI$K_VERB_DEAS 12 /* deassign */ #define CLI$K_VERB_DEBU 13 /* debug */ #define CLI$K_VERB_DEFI 14 /* define */ #define CLI$K_VERB_DELE 15 /* delete */ #define CLI$K_VERB_DEPO 16 /* deposit */ #define CLI$K_VERB_DIFF 17 /* difference command */ #define CLI$K_VERB_DIRE 18 /* directory */ #define CLI$K_VERB_DISM 19 /* dismount */ #define CLI$K_VERB_EDIT 20 /* edit */ #define CLI$K_VERB_EOD 21 /* eod */ #define CLI$K_VERB_EXAM 22 /* examine */ #define CLI$K_VERB_EXIT 23 /* exit */ #define CLI$K_VERB_FORT 24 /* fortran */ #define CLI$K_VERB_GOTO 25 /* goto */ #define CLI$K_VERB_HELP 26 /* help */ #define CLI$K_VERB_IF 27 /* if */ #define CLI$K_VERB_INIT 28 /* initialize */ #define CLI$K_VERB_INQU 29 /* inquire */ #define CLI$K_VERB_LINK 30 /* link */ #define CLI$K_VERB_LOGO 31 /* logout */ #define CLI$K_VERB_MACR 32 /* macro */ #define CLI$K_VERB_MCR 33 /* mcr */ #define CLI$K_VERB_ON 34 /* on */ #define CLI$K_VERB_PRIN 35 /* print */ #define CLI$K_VERB_RUN 36 /* run */ #define CLI$K_VERB_SET 37 /* set */ #define CLI$K_VERB_SHOW 38 /* show */ #define CLI$K_VERB_STAR 39 /* start */ #define CLI$K_VERB_STOP 40 /* stop */ #define CLI$K_VERB_SUBM 41 /* submit */ #define CLI$K_VERB_TYPE 42 /* type */ #define CLI$K_VERB_MOUN 43 /* mount */ #define CLI$K_VERB_PATC 44 /* patch */ #define CLI$K_VERB_REPL 45 /* replay */ #define CLI$K_VERB_UNLO 46 /* unlock */ #define CLI$K_VERB_APPE 47 /* append command */ #define CLI$K_VERB_DUMP 48 /* dump */ #define CLI$K_VERB_PURG 49 /* purge */ #define CLI$K_VERB_RENA 50 /* rename */ #define CLI$K_VERB_CANC 51 /* cancel */ #define CLI$K_VERB_LIBR 52 /* library */ #define CLI$K_VERB_SORT 53 /* sort */ #define CLI$K_VERB_REQU 54 /* request */ #define CLI$K_VERB_SYNC 55 /* syncronize */ #define CLI$K_VERB_CORA 56 /* coral */ #define CLI$K_VERB_PASC 57 /* pascal */ #define CLI$K_VERB_PLI 58 /* pl/1 */ #define CLI$K_VERB_MESS 59 /* message */ /* Define verb qeneric codes */ #define CLI$K_VERB_FORE 255 /* foreign command */ #endif /*_CLIVERBDEF_H*/