1 /* --------------- BEGIN include file plot_entry_dcls.incl.pl1 --------------- */
 2 
 3 dcl  plot_          ext entry (float bin dimension (*), float bin dimension (*), fixed bin, fixed bin, char (1)),
 4      plot_$setup    ext entry (char (*), char (*), char (*), fixed bin, float bin, fixed bin, fixed bin),
 5      plot_$scale    ext entry (float bin, float bin, float bin, float bin);
 6 
 7 dcl (Vectors_only initial (1),                    /* vec_sw;  fourth arg to plot_ */
 8      Vectors_and_symbols initial (2),
 9      Symbols_only initial (3),
10 
11      Linear_linear initial (1),                   /* type;  fourth arg to plot_$setup */
12      Log_linear initial (2),
13      Linear_log initial (3),
14      Log_log initial (4),
15 
16      Tick_marks initial (0),                      /* grid_sw;  fifth arg to plot_$setup */
17      Dotted_grid initial (1),
18      Solid_grid initial (2),
19      No_grid initial (3),
20 
21      Normal_scaling initial (0),                  /* eq_scale_sw;  sixth arg to plot_$setup */
22      Equal_scaling initial (1)) fixed bin static options (constant);
23 
24 /* ---------------- END include file plot_entry_dcls.incl.pl1 ---------------- */