1
2
3
4
5
6 dcl 1 projfile based (pp) aligned,
7 2 nproj fixed bin (35),
8 2 version fixed bin,
9 2 projfilexx0 (6) bit (36) aligned,
10 2 projfiletab (3000),
11 3 id char (12) unal,
12 3 title char (52) unal,
13 3 inv char (32) unal,
14 3 inv_addr char (32) unal,
15 3 sup char (32) unal,
16 3 sup_addr char (32) unal,
17 3 sup_phone char (16) unal,
18 3 on fixed bin (71),
19 3 off fixed bin (71),
20 3 disk_psec fixed bin (71),
21 3 disk_quota fixed bin (35),
22 3 dir_disk_quota fixed bin (35),
23 3 disk_use fixed bin (35),
24 3 dir_disk_use fixed bin (35),
25 3 misc_charges float bin,
26 3 n_misc fixed bin,
27 3 processed fixed bin,
28 3 pad bit (36) aligned;
29
30 dcl loph int static fixed bin (17) options (constant) init (8),
31 lope int static fixed bin (17) options (constant) init (66);
32
33 dcl PROJFILE_VERSION fixed bin init (3) int static options (constant);
34
35