xref: /haiku/src/add-ons/kernel/busses/scsi/usb/transform_procs.h (revision 7749d0bb0c358a3279b1b9cc76d8376e900130a5)
1 /**
2  *
3  * TODO: description
4  *
5  * This file is a part of USB SCSI CAM for Haiku OS.
6  * May be used under terms of the MIT License
7  *
8  * Author(s):
9  * 	Siarzhuk Zharski <imker@gmx.li>
10  *
11  *
12  */
13 /** decalration of SCSI commands transformation procedures */
14 
15 #ifndef _TRANSFORM_PROCS_H_
16 	#define _TRANSFORM_PROCS_H_
17 
18 #ifndef _PROTO_MODULE_H_
19 #include "proto_module.h"
20 #endif /* _PROTO_MODULE_H_ */
21 /* transforms SCSI commands */
22 extern transform_module_info scsi_transform_m;
23 /* transforms RBC commands */
24 extern transform_module_info rbc_transform_m;
25 /* transforms UFI commands */
26 extern transform_module_info ufi_transform_m;
27 /* transforms ATAPI commands */
28 extern transform_module_info atapi_transform_m;
29 /* transforms QIC-157 commands */
30 extern transform_module_info qic157_transform_m;
31 #endif /*_TRANSFORM_PROCS_H_*/
32