1 2 /* . . . BEGIN INCLUDE FILE . . . bk_nss_info . . . */ 3 4 /* Created Fall '75 RE Mullen for intrim NSS dumper */ 5 /* This structure is allocated in each dump record. */ 6 7 dcl 1 bk_nss_info aligned based, 8 2 version fixed bin, 9 2 lvname char (32) aligned, 10 2 pvname char (32) aligned, 11 2 lvid bit (36) aligned, 12 2 pvid bit (36) aligned; /* limit of version = 1 struct */ 13 14 15 dcl 1 bk_dq_info aligned based, 16 2 version fixed bin, 17 2 quota fixed bin, 18 2 ltrp fixed bin (71), 19 2 tlu bit (36) aligned, 20 2 inf_acct fixed bin, 21 2 term_acct fixed bin (1), 22 2 used fixed bin; 23 24 25 26 /* . . . END INCLUDE FILE bk_nss_info . . . */ 27 28