blob: 886878c03fd9bd9168626d5aab2bb49e06a90f4f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/***************************************************************************
scsi.h - Header which defines the interface between SCSI device handlers
and SCSI interfaces.
***************************************************************************/
#ifndef _SCSI_H_
#define _SCSI_H_
typedef struct scsiconfigitem
{
const char *tag;
} SCSIConfigItem;
#define SCSI_MAX_DEVICES (16)
typedef struct scsiconfigtable
{
int devs_present;
const SCSIConfigItem devices[SCSI_MAX_DEVICES];
} SCSIConfigTable;
#endif
|