blob: a2bc232e8b38985928f7f331d18b38ddc91ab12f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <stdint.h>
/* generic device wrapper: */
const char* dev_errstr(int error);
/* generic SCSI device stuff: */
#define DIR_IN 0
#define DIR_OUT 1
/* Special functions */
|