1 /* Begin include file ..... mdc_status_args.incl.pl1 */ 2 3 /* This include file defines the param structure used to call mdc_$status */ 4 5 /* Written April 1976 by Larry Johnson */ 6 7 dcl argp ptr; 8 9 dcl 1 msargs aligned based (argp), 10 2 version fixed bin, 11 2 output_size fixed bin (19), /* Number of words in output area */ 12 2 flags, 13 3 exec bit (1) unal, /* Set if user wants to exercixe exec access */ 14 3 dirs bit (1) unal, /* Set if user wants info in directories returned */ 15 3 account bit (1) unal, /* Set is user has passed a list of accounts (exec only) */ 16 3 owner bit (1) unal, /* Set if user has passed a list of owners (exec only) */ 17 3 backup bit (1) unal, /* Set if backup data wanted (exec only) */ 18 3 restrict bit (1) unal, /* Set if caller wants restricting paths returnd */ 19 3 accounting bit (1) unal, /* Set if caller wants accounting data */ 20 3 fill bit (29) unal, 21 2 nnames fixed bin, /* Number of names passed (if account or owner set) */ 22 2 namesp ptr, /* Pointer to the names */ 23 2 output_ptr ptr; /* Pointer to place for results */ 24 25 /* End include file ..... mdc_status_args.incl.pl1 */