EMILE/libscsi/libscsi.h

23 lines
718 B
C
Raw Normal View History

2005-11-17 06:44:44 +00:00
/*
*
* (c) 2004, 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
*
*/
#include <sys/types.h>
#include <macos/scsi.h>
2005-11-21 21:56:13 +00:00
typedef struct {
int target;
unsigned int sector_size;
} scsi_device_t;
2005-11-17 06:44:44 +00:00
extern int scsi_command(int target, char* cdb, int count, TIB_t* tib);
extern int scsi_INQUIRY(int target, char* buffer, size_t count);
extern int scsi_READ(int target, unsigned long offset, unsigned short nb_blocks,
char *buffer, int buffer_size);
2005-11-21 21:56:13 +00:00
extern scsi_device_t *scsi_open(int target);
extern int scsi_read_sector(scsi_device_t *device, off_t offset, void* buffer, size_t size);
extern int scsi_close(scsi_device_t *device);