From 8c1612d32c5682a86216adb8c8d11ce715fe5475 Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Mon, 19 Jun 2017 14:38:30 -0500 Subject: Import Upstream version 0.3.6 --- scsi.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 scsi.h (limited to 'scsi.h') diff --git a/scsi.h b/scsi.h new file mode 100644 index 00000000..430d9e76 --- /dev/null +++ b/scsi.h @@ -0,0 +1,23 @@ +#ifndef __SCSI_H__ +#define __SCSI_H__ + +typedef struct _SCSIDevice SCSIDevice; + +struct _SCSIDevice { + gchar *model; + + gchar *vendor; + gchar *type; + gchar *revision; + gint controller; + gint channel; + gint id; + gint lun; + + SCSIDevice *next; +}; + +void hi_show_scsi_info(MainWindow *mainwindow, SCSIDevice *device); +SCSIDevice *hi_scan_scsi(void); + +#endif -- cgit v1.2.3