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