summaryrefslogtreecommitdiff
path: root/scsi.h
diff options
context:
space:
mode:
Diffstat (limited to 'scsi.h')
-rw-r--r--scsi.h23
1 files changed, 23 insertions, 0 deletions
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