summaryrefslogtreecommitdiff
path: root/scsi.h
blob: 430d9e7692f7b37d3b5efa2d8085b609e96ef817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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