1 /* START OF: eor_defaults.incl.pl1 * * * * * * * * * * * * * * * * */ 2 3 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ 4 /* */ 5 /* This include file declares data items that are returned by the internal entry point, */ 6 /* enter_output_request$list_defaults. */ 7 /* */ 8 /* Status: */ 9 /* 0) Created: December 28, 1981 by Gary Dixon */ 10 /* */ 11 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ 12 13 dcl 1 eor_defaults aligned based(Peor_defaults), 14 2 header, 15 3 version fixed bin, 16 3 N fixed bin, /* Number of request types for which eor has */ 17 /* default control argument settings. */ 18 2 request_type (Nrequest_types refer (eor_defaults.N)), 19 /* For each request type: */ 20 3 name char(24), /* user-defined name for the request type. */ 21 3 generic_type char(24), /* generic type (ie, printer, punch, plotter) */ 22 3 Sdefault bit(1), /* ON if this is default request type for the */ 23 /* generic type. */ 24 3 target_request_type_name /* actual request type associated with the */ 25 char(24), /* user-defined request type name. */ 26 Nrequest_types fixed bin, 27 Peor_defaults ptr, 28 Veor_defaults_1 fixed bin int static options(constant) init(1); 29 30 /* END OF: eor_defaults.incl.pl1 * * * * * * * * * * * * * * * * */