Files
Aaru/DiscImageChef.Device.Report/scsi_mode.h

45 lines
1.1 KiB
C
Raw Normal View History

//
// Created by claunia on 16/12/17.
//
#ifndef DISCIMAGECHEF_DEVICE_REPORT_SCSI_MODE_H
#define DISCIMAGECHEF_DEVICE_REPORT_SCSI_MODE_H
typedef struct
{
2017-12-18 18:28:33 +00:00
uint8_t Density;
uint64_t Blocks;
uint32_t BlockLength;
} BlockDescriptor;
typedef struct
{
2017-12-18 18:28:33 +00:00
uint8_t MediumType;
int WriteProtected;
BlockDescriptor BlockDescriptors[4096];
2017-12-18 18:28:33 +00:00
int descriptorsLength;
uint8_t Speed;
uint8_t BufferedMode;
int EBC;
int DPOFUA;
int decoded;
} ModeHeader;
typedef struct
{
2017-12-18 18:28:33 +00:00
ModeHeader Header;
unsigned char *Pages[256][256];
2017-12-18 18:28:33 +00:00
size_t pageSizes[256][256];
int decoded;
} DecodedMode;
2017-12-18 18:28:33 +00:00
ModeHeader *DecodeModeHeader6(unsigned char *modeResponse, uint8_t deviceType);
ModeHeader *DecodeModeHeader10(unsigned char *modeResponse, uint8_t deviceType);
DecodedMode *DecodeMode6(unsigned char *modeResponse, uint8_t deviceType);
DecodedMode *DecodeMode10(unsigned char *modeResponse, uint8_t deviceType);
#endif //DISCIMAGECHEF_DEVICE_REPORT_SCSI_MODE_H