1 /** 2 * 3 * TODO: description 4 * 5 * This file is a part of USB SCSI CAM for Haiku. 6 * May be used under terms of the MIT License 7 * 8 * Author(s): 9 * Siarzhuk Zharski <imker@gmx.li> 10 * 11 * 12 */ 13 #ifndef _FAKE_DEVICE_H_ 14 #define _FAKE_DEVICE_H_ 15 16 void fake_inquiry_request(usb_device_info *udi, CCB_SCSIIO *ccbio); 17 void fake_test_unit_ready_request(CCB_SCSIIO *ccbio); 18 status_t fake_scsi_io(CCB_SCSIIO *ccbio); 19 20 #endif /* _FAKE_DEVICE_H_ */ 21