mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
37 lines
568 B
C
37 lines
568 B
C
/*
|
|
*
|
|
* (c) 2004, 2005 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
*
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <scsi/scsi.h>
|
|
|
|
#include <macos/types.h>
|
|
#include <macos/errors.h>
|
|
|
|
#include "libscsi.h"
|
|
|
|
int scsi_INQUIRY(int target, char *buffer, size_t count)
|
|
{
|
|
char cdb[6];
|
|
TIB_t tib[2];
|
|
|
|
cdb[0] = INQUIRY;
|
|
cdb[1] = 0;
|
|
cdb[2] = 0;
|
|
cdb[3] = 0;
|
|
cdb[4] = count;
|
|
cdb[5] = 0;
|
|
|
|
tib[0].opcode = op_no_inc;
|
|
tib[0].param1 = (int)buffer;
|
|
tib[0].param2 = count;
|
|
tib[1].opcode = op_stop;
|
|
tib[1].param1 = 0;
|
|
tib[1].param2 = 0;
|
|
|
|
return scsi_command(target, cdb, 6, tib);
|
|
}
|