/* * * F11DEF - volume set list definitions [not in Starlet] */ #ifndef _VSLDEF_H #define _VSLDEF_H /* Structure of a volume set list file entry. Record 1 contains the volume set name. Record n+1 contains the volume label of RVN n in the volume set. */ #define VSL$S_NAME 12 #define VSL$K_LENGTH 64 #define VSL$C_LENGTH 64 #define VSL$S_VSLDEF 64 struct vsldef { char vsl$t_name[12]; /* volume name */ char vsldef$$_fill[52]; /* unused */ }; #endif /*_VSLDEF_H*/