mirror of
https://github.com/SDL-Hercules-390/hyperion.git
synced 2026-07-26 02:29:51 +02:00
a68c119be4
New option "--online" to test GMT_ONLINE bit for SCSI tape mounts. Also new "-d" (debug) option to enable display of status bits during open process. Refer to updated documentation for further details. This hopefully closes issue #97.
18 lines
640 B
C
18 lines
640 B
C
/* SCSIUTIL.H (C) Copyright "Fish" (David B. Trout), 2016 */
|
|
/* Hercules SCSI tape utility functions */
|
|
/* */
|
|
/* Released under "The Q Public License Version 1" */
|
|
/* (http://www.hercules-390.org/herclic.html) as modifications to */
|
|
/* Hercules. */
|
|
|
|
#ifndef _SCSIUTIL_H_
|
|
#define _SCSIUTIL_H_
|
|
|
|
#if defined( OPTION_SCSI_TAPE )
|
|
|
|
extern char* gstat2str( U32 mt_gstat, char* buffer, size_t bufsz );
|
|
|
|
#endif // defined( OPTION_SCSI_TAPE )
|
|
|
|
#endif // _SCSIUTIL_H_
|