1 /* 2 * Copyright (c) 2003-2005 by Siarzhuk Zharski <imker@gmx.li> 3 * Distributed under the terms of the BSD License. 4 * 5 */ 6 7 /** decalration of SCSI commands transformation procedures */ 8 9 #ifndef _TRANSFORM_PROCS_H_ 10 #define _TRANSFORM_PROCS_H_ 11 12 #ifndef _PROTO_MODULE_H_ 13 #include "proto_module.h" 14 #endif /* _PROTO_MODULE_H_ */ 15 /* transforms SCSI commands */ 16 extern transform_module_info scsi_transform_m; 17 /* transforms RBC commands */ 18 extern transform_module_info rbc_transform_m; 19 /* transforms UFI commands */ 20 extern transform_module_info ufi_transform_m; 21 /* transforms ATAPI commands */ 22 extern transform_module_info atapi_transform_m; 23 /* transforms QIC-157 commands */ 24 extern transform_module_info qic157_transform_m; 25 #endif /*_TRANSFORM_PROCS_H_*/ 26