1 2 #ifndef _ST_H 3 #define _ST_H 4 /* 5 $Header: /usr/src/linux/kernel/blk_drv/scsi/RCS/st.h,v 1.1 1992/07/24 06:27:38 root Exp root $ 6 */ 7 8 #ifndef _SCSI_H 9 #include "scsi.h" 10 #endif 11 12 #define MAX_ST 1 13 14 typedef struct 15 { 16 /* 17 Undecided goodies go here!!! 18 */ 19 Scsi_Device* device; 20 } Scsi_Tape; 21 22 23 extern int NR_ST; 24 extern Scsi_Tape scsi_tapes[MAX_ST]; 25 void st_init(void); 26 #endif