home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume21 / exebyte_toc / smtio.h < prev    next >
C/C++ Source or Header  |  1990-04-29  |  445b  |  14 lines

  1. #include <sys/ioctl.h>
  2.  
  3. /* structures and defines for ioctls */
  4. struct smt_stat {
  5.     char    smt_type[8];    /* Cartridge type */
  6.     unsigned long    smt_remain;        /* # of kilobytes remaining on tape */
  7.     unsigned long    smt_size;        /* size (in kb) of tape */
  8.     unsigned long    smt_ecc;        /* ECC count */
  9.     long    smt_wp:1;        /* Write protected */
  10.     long    smt_bot:1;        /* At beginning of tape */
  11. };
  12.  
  13. #define    SMTIOGETSTAT    _IOR(m,0,struct smt_stat)    /* get the drive status */
  14.