1 /* BEGIN INCLUDE FILE - - - makeknown_info.incl.pl1 - - - last modified March 1975 by R. Bratt - - - */ 2 /* Modified October 1984 for explicit activate flag and to remove 3 detectable flag, Keith Loepere. */ 4 5 dcl makeknown_infop ptr; 6 7 dcl 1 makeknown_info aligned based (makeknown_infop), 8 2 uid bit (36) aligned, 9 2 entryp ptr unaligned, 10 2 flags unaligned, 11 3 dirsw bit (1), 12 3 rsw bit (1), 13 3 allow_write bit (1), 14 3 priv_init bit (1), 15 3 audit bit (1), 16 3 activate bit (1); /* Use only for directory initiation within directory control */ 17 18 /* END INCLUDE FILE makeknown_info.incl.pl1 - - - - - - - - - - - - - - - - - - - - - - - - - - - */