/* * * LIB - ANSI trailer label definitions [not in Starlet] */ #ifndef _EOFDEF_H #define _EOFDEF_H #ifndef _EO1DEF_H #define _EO1DEF_H /* EOF1 ANSI magnetic tape label This is the first label in file trailer label set. It is equivalent to HDR1 except for the following fields. */ #define EO1$S_EO1DEF 60 #define EO1$S_BLOCKCNT 6 struct eo1def { unsigned long eo1$l_eo1lid; /* label identifier and number 'EOF1' */ char eo1def$$_fill[50]; char eo1$t_blockcnt[6]; /* block count */ }; #endif /*_EO1DEF_H*/ #ifndef _EO2DEF_H #define _EO2DEF_H /* EOF2 ANSI magnetic tape label This is the second label in the file trailer label set. It is equivalent to HDR2 except for the following fields. */ #define EO2$S_EO2DEF 4 union eo2def { unsigned long eo2$l_eo2lid; /* label identifier and number 'EOF2' */ }; #endif /*_EO2DEF_H*/ #ifndef _EO3DEF_H #define _EO3DEF_H /* EOF3 ANSI magnetic tape label This is the third label in the file trailer label set. It is equivalent to HDR3 except for the following fields. */ #define EO3$S_EO3DEF 4 union eo3def { unsigned long eo3$l_eo3lid; /* label identifier and number 'EOF3' */ }; #endif /*_EO3DEF_H*/ #ifndef _EO4DEF_H #define _EO4DEF_H /* EOF4 ANSI magnetic tape label This is the fourth label in the file trailer label set. It is equivalent to HDR4 except for the following fields. */ #define EO4$S_EO4DEF 4 union eo4def { unsigned long eo4$l_eo4lid; /* label identifier and number 'EOF4' */ }; #endif /*_EO4DEF_H*/ #endif /*_EOFDEF_H*/