1*2db0303fSimker /** 2*2db0303fSimker * 3*2db0303fSimker * TODO: description 4*2db0303fSimker * 5*2db0303fSimker * This file is a part of USB SCSI CAM for Haiku OS. 6*2db0303fSimker * May be used under terms of the MIT License 7*2db0303fSimker * 8*2db0303fSimker * Author(s): 9*2db0303fSimker * Siarzhuk Zharski <imker@gmx.li> 10*2db0303fSimker * 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