xref: /haiku/src/add-ons/kernel/busses/scsi/usb/fake_device.h (revision 25a7b01d15612846f332751841da3579db313082)
12db0303fSimker /**
22db0303fSimker  *
32db0303fSimker  * TODO: description
42db0303fSimker  *
5*06437987SMatt Madia  * This file is a part of USB SCSI CAM for Haiku.
62db0303fSimker  * May be used under terms of the MIT License
72db0303fSimker  *
82db0303fSimker  * Author(s):
92db0303fSimker  * 	Siarzhuk Zharski <imker@gmx.li>
102db0303fSimker  *
11b3d94504SStephan Aßmus  *
12b3d94504SStephan Aßmus  */
13b3d94504SStephan Aßmus #ifndef _FAKE_DEVICE_H_
14b3d94504SStephan Aßmus 	#define _FAKE_DEVICE_H_
15b3d94504SStephan Aßmus 
16b3d94504SStephan Aßmus void fake_inquiry_request(usb_device_info *udi, CCB_SCSIIO *ccbio);
17b3d94504SStephan Aßmus void fake_test_unit_ready_request(CCB_SCSIIO *ccbio);
18b3d94504SStephan Aßmus status_t fake_scsi_io(CCB_SCSIIO *ccbio);
19b3d94504SStephan Aßmus 
20b3d94504SStephan Aßmus #endif /* _FAKE_DEVICE_H_ */
21